Do not log browser login failures (#6049)

This commit is contained in:
kannappanr 2018-06-18 11:49:49 -07:00 committed by GitHub
parent d94500ae26
commit 81ee79b042
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -458,11 +458,6 @@ type LoginRep struct {
func (web *webAPIHandlers) Login(r *http.Request, args *LoginArgs, reply *LoginRep) error {
token, err := authenticateWeb(args.Username, args.Password)
if err != nil {
// Make sure to log errors related to browser login,
// for security and auditing reasons.
reqInfo := (&logger.ReqInfo{}).AppendTags("remoteAddr", r.RemoteAddr)
ctx := logger.SetReqInfo(context.Background(), reqInfo)
logger.LogIf(ctx, err)
return toJSONError(err)
}