You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: oauth2/oauth2-resource-server/src/main/java/org/springframework/security/oauth2/server/resource/authentication/JwtIssuerAuthenticationManagerResolver.java
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -192,7 +192,8 @@ public AuthenticationManager resolve(String issuer) {
192
192
returnauthenticationManager;
193
193
}
194
194
else {
195
-
this.logger.debug("Did not resolve AuthenticationManager since issuer is not trusted");
195
+
this.logger.debug(LogMessage
196
+
.format("Did not resolve AuthenticationManager since issuer '%s' is not trusted", issuer));
Copy file name to clipboardExpand all lines: oauth2/oauth2-resource-server/src/main/java/org/springframework/security/oauth2/server/resource/authentication/JwtIssuerReactiveAuthenticationManagerResolver.java
0 commit comments