Skip to content

Commit

Permalink
Log backchannel logout token with INFO level
Browse files Browse the repository at this point in the history
  • Loading branch information
alarkvell committed May 31, 2024
1 parent d9a8d40 commit 015a065
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ private void handleBackChannelLogout(
if (logoutToken == null) {
throw new RuntimeException("No logout token provided");
}
log.debug("Received back-channel logout request token: {}", logoutToken);
log.info("Received back-channel logout request token: {}", logoutToken);
Jwt validLogoutToken = logoutTokenDecoderFactory.createDecoder(clientRegistration).decode(logoutToken);
invalidateOidcUserSession(validLogoutToken);
response.setHeader(HttpHeaders.CACHE_CONTROL, "no-store");
Expand Down

0 comments on commit 015a065

Please sign in to comment.