diff --git a/api/server/middleware/debug.go b/api/server/middleware/debug.go index 967fe7000f..be7056f6c6 100644 --- a/api/server/middleware/debug.go +++ b/api/server/middleware/debug.go @@ -15,7 +15,7 @@ import ( // DebugRequestMiddleware dumps the request to logger func DebugRequestMiddleware(handler httputils.APIFunc) httputils.APIFunc { return func(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error { - logrus.Debugf("%s %s", r.Method, r.RequestURI) + logrus.Debugf("Calling %s %s", r.Method, r.RequestURI) if r.Method != "POST" { return handler(ctx, w, r, vars) diff --git a/api/server/server.go b/api/server/server.go index 6dea4d3a5c..1379b7372e 100644 --- a/api/server/server.go +++ b/api/server/server.go @@ -114,9 +114,6 @@ func (s *HTTPServer) Close() error { func (s *Server) makeHTTPHandler(handler httputils.APIFunc) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { - // log the handler call - logrus.Debugf("Calling %s %s", r.Method, r.URL.Path) - // Define the context that we'll pass around to share info // like the docker-request-id. //