fix: change web requests log level to debug

This commit is contained in:
Deluan 2020-03-21 13:03:04 -04:00
parent ad63b8b1b4
commit 9f42e330b4
1 changed files with 1 additions and 5 deletions

View File

@ -40,11 +40,7 @@ func RequestLogger(next http.Handler) http.Handler {
case status >= 400:
log.Warn(logArgs...)
default:
if log.CurrentLevel() >= log.LevelDebug {
log.Debug(logArgs...)
} else {
log.Info(logArgs...)
}
log.Debug(logArgs...)
}
})
}