all repos — website @ cc40d876890ef8f886c79ed4b7a9700538870772

My website

don't log requests to /health
Alan Pearce alan@alanpearce.eu
Wed, 22 May 2024 19:01:43 +0200
commit

cc40d876890ef8f886c79ed4b7a9700538870772

parent

8469992f30544606151e200378afceb880843623

1 files changed, 3 insertions(+), 0 deletions(-)

jump to
M internal/server/logging.gointernal/server/logging.go
@@ -31,6 +31,9 @@ } 		host := r.Host
 		lw := NewLoggingResponseWriter(w)
 		wrappedHandler.ServeHTTP(lw, r)
+		if r.URL.Path == "/health" {
+			return
+		}
 		statusCode := lw.statusCode
 		log.Info(
 			"http request",