Remove debug log from gzipper (#37790)

This commit is contained in:
Serge Zaitsev 2021-08-11 14:04:08 +02:00 committed by GitHub
parent a058a09b9b
commit e2227c38a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,7 +58,6 @@ func Gziper() func(http.Handler) http.Handler {
for _, pathMatcher := range gzipIgnoredPaths {
if pathMatcher(requestPath) {
fmt.Println("skip path", requestPath)
next.ServeHTTP(rw, req)
return
}