-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
util/{log,netutil}: fix the log bridge
Prior to this patch, log messages from the http package would look like this: ``` E201007 11:15:33.200128 878 httpLoggerserver.go:3088 http: ... ``` Notice how "httpLoggerserver.go" does not correspond to any valid file. With this patch: ``` E201007 11:15:33.200128 878 (gostd) net/http/server.go:3088 http: ... ``` Release note: None
- Loading branch information
Showing
2 changed files
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters