Skip to content

Commit

Permalink
Normalize logging (#411)
Browse files Browse the repository at this point in the history
Signed-off-by: Billy Zha <[email protected]>
  • Loading branch information
qweeah authored Jun 22, 2022
1 parent 4eabef7 commit c95ccae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/trace/transport.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func (t *Transport) RoundTrip(req *http.Request) (resp *http.Response, err error
if err != nil {
e.Errorf("Error in getting response: %w", err)
} else if resp == nil {
e.Errorf("No response obtained for request %s %s", req.Method, req.URL)
e.Errorf("No response obtained for request %s %q", req.Method, req.URL)
} else {
e.Debugf(" Response Status: %q", resp.Status)
e.Debugf(" Response headers:")
Expand Down

0 comments on commit c95ccae

Please sign in to comment.