diff --git a/handlers/middleware.go b/handlers/middleware.go index c5ca97e..fe83815 100644 --- a/handlers/middleware.go +++ b/handlers/middleware.go @@ -29,6 +29,7 @@ func LogRequests(next http.Handler) http.Handler { ww := &responseWriterWrapper{ResponseWriter: w} next.ServeHTTP(ww, r) duration := time.Since(start) + // path should include url params; ai! log.Debug("request completed", "method", r.Method, "path", r.URL.Path,