forked from External/mage
More changes to user and session handling. Fixes somes issues with client reconnect and connecting other instance.
This commit is contained in:
parent
180bae323d
commit
df04bf829d
5 changed files with 47 additions and 17 deletions
|
|
@ -192,8 +192,11 @@ public class UserManager {
|
|||
}
|
||||
|
||||
public void handleException(Exception ex) {
|
||||
if (ex != null && !ex.getMessage().equals("No message")) {
|
||||
logger.fatal("", ex);
|
||||
if (ex != null) {
|
||||
logger.fatal("User manager exception");
|
||||
ex.printStackTrace();
|
||||
}else {
|
||||
logger.fatal("User manager exception - null");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue