Commit 6bed7b67 authored by guus's avatar guus

Removed confusing newline character in log statement.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@12836 b35dd754-fafc-0310-a699-88a17e54d16e
parent 37ff6fb2
......@@ -108,15 +108,13 @@ class BlockingReadingMode extends SocketReadingMode {
socketReader.session.close();
}
catch (Exception e) {
Log.warn(LocaleUtils.getLocalizedString("admin.error.connection")
+ "\n" + socket.toString());
Log.warn(LocaleUtils.getLocalizedString("admin.error.connection") + socket.toString());
}
}
else {
// Close and release the created connection
socketReader.connection.close();
Log.debug(LocaleUtils.getLocalizedString("admin.error.connection")
+ "\n" + socket.toString());
Log.debug(LocaleUtils.getLocalizedString("admin.error.connection") + socket.toString());
}
socketReader.shutdown();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment