Merge pull request #476 from andrewgaul/logging-format

Use correct logging format
This commit is contained in:
Adrian Cole 2012-03-19 17:32:46 -07:00
commit a061348989
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) { if (currentUser.getAccountType() != Account.Type.USER) {
logger.warn("Expecting an user account: {}", currentUser); logger.warn("Expecting an user account: %s", currentUser);
} }
return currentUser; return currentUser;
} }