forked from TrueCloudLab/distribution
Reduces log level of auth error lines from error->warn
An error level log is already produced within app.authorized() if an actual unexpected error occurs during authorization, so this warning level log remains for auditability purposes, but should not be considered an error condition. Addresses #704 Signed-off-by: Brian Bland <brian.bland@docker.com>
This commit is contained in:
parent
c958371f4b
commit
41aadeac9a
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue