Use correct logging format

This commit is contained in:
Andrew Gaul 2012-03-19 17:28:43 -07:00
parent afb67793e8
commit bd2623fc49
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ public class GetCurrentUser implements Supplier<User> {
}
if (currentUser.getAccountType() != Account.Type.USER) {
logger.warn("Expecting an user account: {}", currentUser);
logger.warn("Expecting an user account: %s", currentUser);
}
return currentUser;
}