Fix string formatting.

// FREEBIE
This commit is contained in:
Moxie Marlinspike 2015-03-12 16:29:49 -07:00
parent 2016c17894
commit f623b24196
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ public class WebSocketConnection implements PubSubListener {
Optional<Account> source = accountsManager.get(message.getSource());
if (!source.isPresent()) {
logger.warn("Source account disappeared? (%s)", message.getSource());
logger.warn(String.format("Source account disappeared? (%s)", message.getSource()));
return;
}