From 23cae82951b22341719c2246196ec2c9c3d86d3e Mon Sep 17 00:00:00 2001 From: Patrick D'appollonio <930925+patrickdappollonio@users.noreply.github.com> Date: Wed, 9 Oct 2024 00:17:58 -0400 Subject: [PATCH] Update internal/server/handlers.go --- internal/server/handlers.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/server/handlers.go b/internal/server/handlers.go index 46d4ab7..1756dc3 100644 --- a/internal/server/handlers.go +++ b/internal/server/handlers.go @@ -40,7 +40,6 @@ func (s *Server) showOrRender(w http.ResponseWriter, r *http.Request) { if os.IsNotExist(err) { s.printWarning("attempted to access non-existent path: %s", currentPath) if s.CustomNotFoundPage != "" { - fmt.Fprintf(s.LogOutput, "%s %q -- custom %d \n", r.Method, r.RequestURI, http.StatusNotFound) s.serveFile(s.CustomNotFoundPage, w, r) return }