From d023b41fa86f62c4eac706616cae025fb2f90a70 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Tue, 2 Apr 2024 02:06:10 +0200 Subject: chore(ods): added logging of search results and updated code comments --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 42ea1a1..2a06432 100644 --- a/main.go +++ b/main.go @@ -12,7 +12,7 @@ import ( "unicode" ) -// Variables to customise the search behaviour +// Variables to customise the search const ( listenStr = "0.0.0.0:8090" ) @@ -63,12 +63,12 @@ func postIndex() http.Handler { break } } + slog.Info("post", "word", query, "invalid", data.Invalid) w.Header().Set("Cache-Control", "no-store, no-cache") indexTemplate.ExecuteTemplate(w, "index.html", data) }) } -// The main function func main() { http.Handle("GET /static/", http.FileServer(http.FS(static))) http.Handle("GET /", getIndex()) -- cgit v1.2.3