Reformat a logger statement

Co-authored-by: delvh <dev.lh@web.de>
This commit is contained in:
Kai S. K. Engelbart 2020-06-13 17:00:44 +02:00 committed by GitHub
parent 6c7a80c708
commit ec923b5620
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ public final class ChatScene {
try {
currentChat.read(writeProxy);
} catch (IOException e1) {
logger.log(Level.WARNING, "Could not read current chat.", e1);
logger.log(Level.WARNING, "Could not read current chat: ", e1);
}
Platform.runLater(messageList::refresh);
}