Merge pull request #1502 from dexidp/sr/fix-log-formatting-in-VerifyPassword-grpc

server/api: fix logging in VerifyPassword
This commit is contained in:
Stephan Renatus
2019-07-30 15:06:48 +02:00
committed by GitHub

View File

@@ -275,7 +275,7 @@ func (d dexAPI) VerifyPassword(ctx context.Context, req *api.VerifyPasswordReq)
}
if err := bcrypt.CompareHashAndPassword(password.Hash, []byte(req.Password)); err != nil {
d.logger.Info("api: password check failed : %v", err)
d.logger.Infof("api: password check failed: %v", err)
return &api.VerifyPasswordResp{
Verified: false,
}, nil