Commit 6babd41f authored by Christian Bühler's avatar Christian Bühler Committed by Andy Wilkinson

Fix logged property names when initializing OAuth2 client

Closes gh-9944
parent b9080324
......@@ -164,7 +164,7 @@ public class OAuth2AuthorizationServerConfiguration
String prefix = "security.oauth2.client";
boolean defaultSecret = this.credentials.isDefaultSecret();
logger.info(String.format(
"Initialized OAuth2 Client%n%n%s.clientId = %s%n%s.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() : "****"));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment