mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
* Session - Added additional information for exception.
This commit is contained in:
parent
359a132e77
commit
51b93600e6
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ public class Session {
|
||||||
call.setMessageId(messageId++);
|
call.setMessageId(messageId++);
|
||||||
callbackHandler.handleCallbackOneway(new Callback(call));
|
callbackHandler.handleCallbackOneway(new Callback(call));
|
||||||
} catch (HandleCallbackException ex) {
|
} 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();
|
disconnect();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue