Commit 988c2f3a authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Added session information to logged message when closing a socket connection due to an error.

git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@2985 b35dd754-fafc-0310-a699-88a17e54d16e
parent dcca8f3b
......@@ -133,7 +133,8 @@ public abstract class SocketReader implements Runnable {
}
catch (Exception e) {
if (session != null) {
Log.warn(LocaleUtils.getLocalizedString("admin.error.stream"), e);
Log.warn(LocaleUtils.getLocalizedString("admin.error.stream") + ". Session: " +
session, e);
}
}
finally {
......
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