Skip to content

Commit

Permalink
removed uneeded log
Browse files Browse the repository at this point in the history
  • Loading branch information
ErykKul committed Oct 13, 2024
1 parent bb70526 commit 0264957
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,6 @@ protected AuthenticatedUser getRequestAuthenticatedUserOrDie(ContainerRequestCon
AuthenticationStatus status = securityContext.authenticate(httpRequest, httpResponse, null);
if (AuthenticationStatus.SUCCESS.equals(status)) {
try {
logger.info(securityContext.getCallerPrincipal().getClass().toString());
userRecordIdentifier = securityContext.getPrincipalsByType(AccessTokenCallerPrincipal.class).stream().map(principal ->
oidcLoginBackingBean.getUserRecordIdentifier(principal.getAccessToken())).filter(userId -> userId != null).findFirst().get();
} catch (Exception e) {
Expand Down

0 comments on commit 0264957

Please sign in to comment.