We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fc5b2c commit b0364fbCopy full SHA for b0364fb
selenium/authorization-server/src/main/java/com/rabbitmq/authorization_server/SecurityConfig.java
@@ -120,6 +120,7 @@ private static KeyPair generateRsaKey() {
120
public OAuth2TokenCustomizer<JwtEncodingContext> jwtTokenCustomizer() {
121
logger.info("Creating jwtTokenCustomizer ...");
122
return (context) -> {
123
+ logger.info("Calling jwtTokenCustomizer with tokenType: {}", context.getTokenType());
124
if (OAuth2TokenType.ACCESS_TOKEN.equals(context.getTokenType())) {
125
AbstractAuthenticationToken principal = context.getPrincipal();
126
logger.info("registered client: {}", context.getRegisteredClient());
0 commit comments