web: remove debug Println

This commit is contained in:
Vincent Bernat
2022-03-18 17:37:05 +01:00
parent 4118bc2a45
commit fd543c876e

View File

@@ -52,7 +52,6 @@ func New(reporter *reporter.Reporter, config Configuration, dependencies Depende
} }
proxyHandler := netHTTP.HandlerFunc( proxyHandler := netHTTP.HandlerFunc(
func(w netHTTP.ResponseWriter, r *netHTTP.Request) { func(w netHTTP.ResponseWriter, r *netHTTP.Request) {
fmt.Println("hello")
proxy.ServeHTTP(w, r) proxy.ServeHTTP(w, r)
}) })
c.d.HTTP.AddHandler("/grafana/", proxyHandler) c.d.HTTP.AddHandler("/grafana/", proxyHandler)