Merge pull request #706 from BrianBland/authLoggingWarnLevel

Reduces log level of auth error lines from error->warn
pull/709/head
Stephen Day 2015-07-16 12:50:55 -07:00
commit c4208c4cce
1 changed files with 1 additions and 1 deletions

View File

@ -359,7 +359,7 @@ func (app *App) dispatcher(dispatch dispatchFunc) http.Handler {
context := app.context(w, r)
if err := app.authorized(w, r, context); err != nil {
ctxu.GetLogger(context).Errorf("error authorizing context: %v", err)
ctxu.GetLogger(context).Warnf("error authorizing context: %v", err)
return
}