Skip to content

Commit 7765d46

Browse files
committed
Added additional debug logging for oidc role claims
1 parent eac2220 commit 7765d46

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/eu/openanalytics/containerproxy/auth/impl/OpenIDAuthenticationBackend.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ protected GrantedAuthoritiesMapper createAuthoritiesMapper() {
178178

179179
Object claimValue = idToken.getClaims().get(rolesClaimName);
180180
if (claimValue != null) {
181-
log.debug(String.format("Matching claim found: %s -> %s", rolesClaimName, claimValue));
181+
log.debug(String.format("Matching claim found: %s -> %s (%s)", rolesClaimName, claimValue, claimValue.getClass()));
182182
} else {
183183
log.debug("No matching claim found.");
184184
}

0 commit comments

Comments
 (0)