diff --git a/util/proxy.go b/util/proxy.go index b2c8d1d8..4e8bd712 100644 --- a/util/proxy.go +++ b/util/proxy.go @@ -38,6 +38,6 @@ func NewProxyHandler(proxy *httputil.ReverseProxy) *proxyHandler { } func (self *proxyHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { - logrus.Infof("proxying from: %v", r.RequestURI) + logrus.Infof("%v->%v", r.Host, r.URL) self.proxy.ServeHTTP(w, r) }