diff --git a/modules/http_server/http_server.go b/modules/http_server/http_server.go index a398dfbb..4b434429 100644 --- a/modules/http_server/http_server.go +++ b/modules/http_server/http_server.go @@ -82,7 +82,7 @@ func (mod *HttpServer) Configure() error { fileServer := http.FileServer(http.Dir(path)) router.HandleFunc("/", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - mod.Info("%s %s %s%s", tui.Bold(strings.Split(r.RemoteAddr, ":")[0]), r.Method, r.Host, r.URL.Path) + mod.Debug("%s %s %s%s", tui.Bold(strings.Split(r.RemoteAddr, ":")[0]), r.Method, r.Host, r.URL.Path) fileServer.ServeHTTP(w, r) })) diff --git a/modules/https_server/https_server.go b/modules/https_server/https_server.go index ae26c009..60f998f1 100644 --- a/modules/https_server/https_server.go +++ b/modules/https_server/https_server.go @@ -100,7 +100,7 @@ func (mod *HttpsServer) Configure() error { fileServer := http.FileServer(http.Dir(path)) router.HandleFunc("/", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - mod.Info("%s %s %s%s", tui.Bold(strings.Split(r.RemoteAddr, ":")[0]), r.Method, r.Host, r.URL.Path) + mod.Debug("%s %s %s%s", tui.Bold(strings.Split(r.RemoteAddr, ":")[0]), r.Method, r.Host, r.URL.Path) fileServer.ServeHTTP(w, r) }))