* Session - Added additional information for exception.

This commit is contained in:
LevelX2 2013-10-15 00:47:13 +02:00
parent 359a132e77
commit 51b93600e6

View file

@ -174,7 +174,7 @@ public class Session {
call.setMessageId(messageId++);
callbackHandler.handleCallbackOneway(new Callback(call));
} catch (HandleCallbackException ex) {
logger.fatal("Session fireCallback error: " + ex.getMessage(), ex);
logger.fatal(new StringBuilder("Session of userId ").append(userId).append(" fireCallback error: ").append(ex.getMessage()).toString(), ex);
disconnect();
}
}