diff --git a/pkg/sdkserver/middleware.go b/pkg/sdkserver/middleware.go index 887ff639..f7f2975e 100644 --- a/pkg/sdkserver/middleware.go +++ b/pkg/sdkserver/middleware.go @@ -40,9 +40,9 @@ func logRequest(h http.Handler) http.Handler { } }() - l.Infof("Handling request: method %s, path %s", r.Method, r.URL.Path) + l.Debugf("Handling request: method %s, path %s", r.Method, r.URL.Path) h.ServeHTTP(w, r) - l.Infof("Handled request: method %s, path %s", r.Method, r.URL.Path) + l.Debugf("Handled request: method %s, path %s", r.Method, r.URL.Path) }) }