Skip to content

Commit

Permalink
Change log level to info for jwks reload (elastic#113454)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfreden authored Sep 25, 2024
1 parent ebbda3a commit 8dbc9f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ private void handleReloadedContentAndJwksAlgs(byte[] bytes) {
assert newContentAndJwksAlgs != null;
assert contentAndJwksAlgs != null;
if ((Arrays.equals(contentAndJwksAlgs.sha256, newContentAndJwksAlgs.sha256)) == false) {
logger.debug(
logger.info(
"Reloaded JWK set from sha256=[{}] to sha256=[{}]",
MessageDigests.toHexString(contentAndJwksAlgs.sha256),
MessageDigests.toHexString(newContentAndJwksAlgs.sha256)
Expand Down

0 comments on commit 8dbc9f3

Please sign in to comment.