Increase whitespace around password logging
Increase the whitespace to make the password easier to find in the log.
This commit is contained in:
parent
18147b24c0
commit
b39ed89a6f
|
|
@ -321,8 +321,8 @@ public class SecurityAutoConfiguration {
|
|||
User user = this.security.getUser();
|
||||
|
||||
if (user.isDefaultPassword()) {
|
||||
logger.info("Using default password for application endpoints: "
|
||||
+ user.getPassword());
|
||||
logger.info("\n\n" + "Using default password for application endpoints: "
|
||||
+ user.getPassword() + "\n\n");
|
||||
}
|
||||
|
||||
Set<String> roles = new LinkedHashSet<String>(Arrays.asList(this.security
|
||||
|
|
|
|||
Loading…
Reference in New Issue