remove JWT from logs

secrets should not be exposed in the logs
This commit is contained in:
David Christofas
2021-03-03 15:30:11 +01:00
parent 0719d18586
commit c532073dd1
3 changed files with 7 additions and 2 deletions

View File

@@ -91,7 +91,7 @@ func (m oidcAuth) getClaims(token string, req *http.Request) (claims oidc.Standa
oauth2.StaticTokenSource(oauth2Token),
)
if err != nil {
m.logger.Error().Err(err).Str("token", token).Msg("Failed to get userinfo")
m.logger.Error().Err(err).Msg("Failed to get userinfo")
status = http.StatusUnauthorized
return
}