Add logger for default password

This commit is contained in:
Dave Syer 2013-08-22 10:50:10 +01:00 committed by Phillip Webb
parent f8f36ead42
commit 6498f0e8b8
1 changed files with 2 additions and 1 deletions

View File

@ -225,7 +225,8 @@ public class SecurityAutoConfiguration {
public AuthenticationManager authenticationManager() throws Exception {
User user = this.management.getUser();
if (user.isDefaultPassword()) {
logger.info("Using default password for ");
logger.info("Using default password for management endpoints: "
+ user.getPassword());
}
List<String> roles = new ArrayList<String>();
roles.add("USER");