Commit bfe53e0b authored by bobbyrullo's avatar bobbyrullo

Merge pull request #275 from ericchiang/decode_err

db: log ignored base64 decode error
parents 67c1bd6a d255007e
......@@ -240,7 +240,7 @@ func (r *clientIdentityRepo) Authenticate(creds oidc.ClientCredentials) (bool, e
dec, err := base64.URLEncoding.DecodeString(creds.Secret)
if err != nil {
log.Errorf("error Decoding client creds ")
log.Errorf("error Decoding client creds: %v", err)
return false, nil
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment