diff --git a/pkg/httputil/httputil.go b/pkg/httputil/httputil.go index 42cfe6b..3a95cac 100644 --- a/pkg/httputil/httputil.go +++ b/pkg/httputil/httputil.go @@ -44,7 +44,6 @@ func InternelServerError(message string) *HTTPError { func Wrap(fn func(w http.ResponseWriter, r *http.Request) error) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { - zap.L().Info("got request") err := fn(w, r) if err != nil { if httpError, ok := err.(*HTTPError); ok {