mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
1ed775e3a8
Different from debug builds do not use the eofDetectRoundTripper if logging is disabled.
18 lines
494 B
Go
18 lines
494 B
Go
//go:build debug
|
|
// +build debug
|
|
|
|
package debug
|
|
|
|
import "net/http"
|
|
|
|
// RoundTripper returns a new http.RoundTripper which logs all requests (if
|
|
// debug is enabled). When debug is not enabled, upstream is returned.
|
|
func RoundTripper(upstream http.RoundTripper) http.RoundTripper {
|
|
eofRoundTripper := eofDetectRoundTripper{upstream}
|
|
if opts.isEnabled {
|
|
// only use loggingRoundTripper if the debug log is configured
|
|
return loggingRoundTripper{eofRoundTripper}
|
|
}
|
|
return eofRoundTripper
|
|
}
|