diff options
Diffstat (limited to 'internal/server/logging.go')
-rw-r--r-- | internal/server/logging.go | 3 |
1 files changed, 0 insertions, 3 deletions
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, |