From 99f8047ef20a64f948ac2b703c81eb49bed091c0 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Thu, 30 Jan 2025 22:16:09 +0100 Subject: re-organise everything --- internal/server/logging.go | 3 --- 1 file changed, 3 deletions(-) (limited to 'internal/server/logging.go') diff --git a/internal/server/logging.go b/internal/server/logging.go index f744931..800e97a 100644 --- a/internal/server/logging.go +++ b/internal/server/logging.go @@ -27,9 +27,6 @@ func wrapHandlerWithLogging(wrappedHandler http.Handler, log *log.Logger) http.H return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { lw := NewLoggingResponseWriter(w) wrappedHandler.ServeHTTP(lw, r) - if r.URL.Path == "/health" { - return - } log.Info( "http request", "method", r.Method, -- cgit 1.4.1