mirror of https://github.com/apache/jclouds.git
Merge pull request #476 from andrewgaul/logging-format
Use correct logging format
This commit is contained in:
commit
a061348989
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue