package middleware import ( "log/slog" "net/http" "time" "github.com/ultisuite/ulti-backend/internal/api/apiresponse" ) type responseWriter struct { http.ResponseWriter status int } func (rw *responseWriter) WriteHeader(code int) { rw.status = code rw.ResponseWriter.WriteHeader(code) } func Logging(next http.Handler) http.Handler { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { start := time.Now() wrapped := &responseWriter{ResponseWriter: w, status: http.StatusOK} next.ServeHTTP(wrapped, r) attrs := []any{ "method", r.Method, "path", r.URL.Path, "status", wrapped.status, "duration", time.Since(start), } if id := apiresponse.TraceIDFromContext(r.Context()); id != "" { attrs = append(attrs, "request_id", id) } slog.Info("request", attrs...) }) }