Polish "Fix logged property names when initializing OAuth2 client"
See gh-9944
This commit is contained in:
parent
6babd41f19
commit
e08d09f5a3
|
@ -164,7 +164,8 @@ public class OAuth2AuthorizationServerConfiguration
|
|||
String prefix = "security.oauth2.client";
|
||||
boolean defaultSecret = this.credentials.isDefaultSecret();
|
||||
logger.info(String.format(
|
||||
"Initialized OAuth2 Client%n%n%s.client-id = %s%n%s.client-secret = %s%n%n",
|
||||
"Initialized OAuth2 Client%n%n%s.client-id = %s%n"
|
||||
+ "%s.client-secret = %s%n%n",
|
||||
prefix, this.credentials.getClientId(), prefix,
|
||||
defaultSecret ? this.credentials.getClientSecret() : "****"));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue