Skip to content

Commit e5f0d14

Browse files
committed
cmd/go/internal/web: fix log message
The web package is now used for proxy fetches, so its logs shouldn't start with "Parsing meta tags". Change-Id: I22a7dce09e3a681544ee4b860f93c63336e547ca Reviewed-on: https://go-review.googlesource.com/c/go/+/174740 Run-TryBot: Heschi Kreinick <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent aaf40f8 commit e5f0d14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cmd/go/internal/web/http.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ func get(security SecurityMode, url *urlpkg.URL) (*Response, error) {
127127
// Note: accepting a non-200 OK here, so people can serve a
128128
// meta import in their http 404 page.
129129
if cfg.BuildV {
130-
log.Printf("Parsing meta tags from %s (status code %d)", Redacted(fetched), res.StatusCode)
130+
log.Printf("reading from %s: status code %d", Redacted(fetched), res.StatusCode)
131131
}
132132
r := &Response{
133133
URL: Redacted(fetched),

0 commit comments

Comments
 (0)