Skip to content
Snippets Groups Projects
Unverified Commit 7c1b4b30 authored by Stephan Renatus's avatar Stephan Renatus Committed by GitHub
Browse files

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

server/api: fix logging in VerifyPassword
parents 128d5da8 231e571c
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment