|
if (!this.passwordEncoder.matches(clientSecret, registeredClient.getClientSecret())) { |
|
throwInvalidClient(OAuth2ParameterNames.CLIENT_SECRET); |
|
} |
We should consider adding a log entry at DEBUG level in ClientSecretAuthenticationProvider for this case. This would allow the logging level to be tuned specifically for this logging.
spring-authorization-server/oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/authentication/ClientSecretAuthenticationProvider.java
Lines 116 to 118 in 27a893f
We should consider adding a log entry at DEBUG level in
ClientSecretAuthenticationProviderfor this case. This would allow the logging level to be tuned specifically for this logging.