summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Dessaux2024-04-02 02:06:10 +0200
committerJulien Dessaux2024-04-02 02:09:34 +0200
commitd023b41fa86f62c4eac706616cae025fb2f90a70 (patch)
treea274e123e617b29311896b7acd251f939b1f0506
parentchore(ods): added forgotten file (diff)
downloadods-d023b41fa86f62c4eac706616cae025fb2f90a70.tar.gz
ods-d023b41fa86f62c4eac706616cae025fb2f90a70.tar.bz2
ods-d023b41fa86f62c4eac706616cae025fb2f90a70.zip
chore(ods): added logging of search results and updated code comments
-rw-r--r--main.go4
1 files 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())