Skip to content

Commit 61abb6c

Browse files
committed
chore: removed unnesasary log message
1 parent ba60d2b commit 61abb6c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

internal/middlewares/maxBodySize.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import (
88
func MaxBodySize(maxBytes int64) func(http.Handler) http.Handler{
99
return func(next http.Handler) http.Handler{
1010
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request){
11-
log.Println("MaxBodySize middleware")
1211
r.Body = http.MaxBytesReader(w,r.Body,maxBytes)
1312
next.ServeHTTP(w,r)
1413
})

0 commit comments

Comments
 (0)