This commit is contained in:
Michael Quigley 2022-07-21 16:16:46 -04:00
parent af3328f333
commit 770b697c95
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -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)
}