mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 08:23:47 +01:00
parent
4b1cb1be43
commit
0ab2693da6
@ -1378,7 +1378,14 @@ Write CPU profile to file. This can be analysed with `go tool pprof`.
|
||||
#### --dump flag,flag,flag ####
|
||||
|
||||
The `--dump` flag takes a comma separated list of flags to dump info
|
||||
about. These are:
|
||||
about.
|
||||
|
||||
Note that some headers including `Accept-Encoding` as shown may not
|
||||
be correct in the request and the response may not show `Content-Encoding`
|
||||
if the go standard libraries auto gzip encoding was in effect. In this case
|
||||
the body of the request will be gunzipped before showing it.
|
||||
|
||||
The available flags are:
|
||||
|
||||
#### --dump headers ####
|
||||
|
||||
|
@ -180,6 +180,13 @@ func NewTransportCustom(ci *fs.ConfigInfo, customize func(*http.Transport)) http
|
||||
t.IdleConnTimeout = 60 * time.Second
|
||||
t.ExpectContinueTimeout = ci.ExpectContinueTimeout
|
||||
|
||||
if ci.Dump&(fs.DumpHeaders|fs.DumpBodies|fs.DumpAuth|fs.DumpRequests|fs.DumpResponses) != 0 {
|
||||
fs.Debugf(nil, "You have specified to dump information. Please be noted that the "+
|
||||
"Accept-Encoding as shown may not be correct in the request and the response may not show "+
|
||||
"Content-Encoding if the go standard libraries auto gzip encoding was in effect. In this case"+
|
||||
" the body of the request will be gunzipped before showing it.")
|
||||
}
|
||||
|
||||
// customize the transport if required
|
||||
if customize != nil {
|
||||
customize(t)
|
||||
|
Loading…
Reference in New Issue
Block a user