don't log requests to /health
Alan Pearce alan@alanpearce.eu
Wed, 22 May 2024 19:01:43 +0200
1 files changed, 3 insertions(+), 0 deletions(-)
jump to
M internal/server/logging.go → internal/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",