mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 21:30:07 +08:00
Add request ID to HTTP debugging to make it easier to trace concurrent flows
This commit is contained in:
parent
c102bf28e3
commit
d1759fdfa9
|
@ -188,7 +188,7 @@ func (t *Transport) RoundTrip(req *http.Request) (resp *http.Response, err error
|
|||
if t.logHeader || t.logBody {
|
||||
buf, _ := httputil.DumpRequestOut(req, t.logBody)
|
||||
Debug(nil, "%s", separatorReq)
|
||||
Debug(nil, "%s", "HTTP REQUEST")
|
||||
Debug(nil, "%s (req %p)", "HTTP REQUEST", req)
|
||||
Debug(nil, "%s", string(buf))
|
||||
Debug(nil, "%s", separatorReq)
|
||||
}
|
||||
|
@ -197,7 +197,7 @@ func (t *Transport) RoundTrip(req *http.Request) (resp *http.Response, err error
|
|||
// Log response
|
||||
if t.logHeader || t.logBody {
|
||||
Debug(nil, "%s", separatorResp)
|
||||
Debug(nil, "%s", "HTTP RESPONSE")
|
||||
Debug(nil, "%s (req %p)", "HTTP RESPONSE", req)
|
||||
if err != nil {
|
||||
Debug(nil, "Error: %v", err)
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue
Block a user