From eb91eb33d538a7e2fbc324054d2dc6c453451476 Mon Sep 17 00:00:00 2001 From: jamesread Date: Fri, 30 Aug 2024 21:26:42 +0100 Subject: [PATCH] bugfix: Log for http request mangling changed to DEBUG level --- internal/httpservers/webuiServer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/httpservers/webuiServer.go b/internal/httpservers/webuiServer.go index 7ed88441..c1087bf8 100644 --- a/internal/httpservers/webuiServer.go +++ b/internal/httpservers/webuiServer.go @@ -145,7 +145,7 @@ func startWebUIServer(cfg *config.Config) { // Mangle requests for any path like /logs or /config to load the webui index.html if path.Ext(r.URL.Path) == "" && r.URL.Path != "/" { - log.Infof("Mangling request for %s to /index.html", r.URL.Path) + log.Debugf("Mangling request for %s to /index.html", r.URL.Path) http.ServeFile(w, r, path.Join(webuiDir, "index.html")) } else {