Skip to content

Commit

Permalink
Reduce log level in HttpJwtAuthenticator if request cannot be authent…
Browse files Browse the repository at this point in the history
…icated

Signed-off-by: Craig Perkins <[email protected]>
  • Loading branch information
cwperks committed Nov 15, 2024
1 parent 4aa7b1c commit fb3b40a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,9 @@ private AuthCredentials extractCredentials0(final SecurityRequest request) {
}
}
}
log.error("Failed to parse JWT token using any of the available parsers");
if (log.isDebugEnabled()) {
log.debug("Unable to authenticate JWT Token with any configured signing key");
}
return null;
}

Expand Down

0 comments on commit fb3b40a

Please sign in to comment.