2022-03-28 20:23:47 +00:00
|
|
|
//go:build !debug
|
2017-05-01 13:31:57 +00:00
|
|
|
// +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 {
|
|
|
|
return upstream
|
|
|
|
}
|