Merge pull request #20994 from runcom/fix-debugf

api: server: server: remove redunant debugf
This commit is contained in:
Vincent Demeester 2016-03-07 13:32:10 +01:00
commit 64a4a7a191
2 changed files with 1 additions and 4 deletions

View File

@ -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)

View File

@ -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.
//