소스 검색

bugfix: Log for http request mangling changed to DEBUG level

jamesread 1 년 전
부모
커밋
eb91eb33d5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      internal/httpservers/webuiServer.go

+ 1 - 1
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 {