summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Render/Render.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Render/Render.go b/src/Render/Render.go
index 85061d7..f9b702b 100644
--- a/src/Render/Render.go
+++ b/src/Render/Render.go
@@ -17,7 +17,7 @@ func RegisterEndpoints() {
}
func mux(w http.ResponseWriter, r *http.Request) {
- slog.Info("Request", slog.String("URL", r.URL.String()))
+ // slog.Info("Request", slog.String("URL", r.URL.String()))
if r.URL.String() == "/favicon.ico" {
http.ServeFile(w, r, fmt.Sprintf("%s/favicon.ico", settings.Current.StaticLocation))
}
@@ -36,6 +36,6 @@ func render(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusInternalServerError)
return
}
- slog.Info("Requested a template")
+ // slog.Info("Requested a template")
w.Write([]byte(indexTempl))
}