cmd/go: emit a log after all module downloads complete #39728
Labels
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Milestone
It's great that in steady state,
go build
produces no output on success. However, the lack of feedback as to whengo build
has finished downloading all its dependencies makes it hard to diagnose whether a long invocation ofgo build
is due to compilation or a network issue. This can be especially important in a CI environment where there is often no cache. While it's possible to rungo build
with-x
or-v
to get this information, it's often much more information than is needed.The behavior I would like to see is that if
go build
downloads any modules, it prints a log line at the end of the download phase to indicate that the downloads have finished and the build has started. Ifgo build
does not download any modules, it would not output anything new.What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes.
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
What did you expect to see?
The last line is what I'd like. Phrasing is totally up for debate.
What did you see instead?
A lot of downloading lines, followed by a pause.
The text was updated successfully, but these errors were encountered: