From 9fc94cf0dec8fc021eaec8798c0c6f4502b9df4d Mon Sep 17 00:00:00 2001 From: Alexandre Iooss Date: Fri, 16 Oct 2020 21:26:48 +0200 Subject: [PATCH] Change not found error message --- web/handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/handler.go b/web/handler.go index d9cc4fa..d23f816 100644 --- a/web/handler.go +++ b/web/handler.go @@ -130,7 +130,7 @@ func viewerHandler(w http.ResponseWriter, r *http.Request) { // Validation on path if validPath.FindStringSubmatch(r.URL.Path) == nil { http.NotFound(w, r) - log.Print(r.URL.Path) + log.Printf("Replied not found on %s", r.URL.Path) return }