mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Changed debug message.
This commit is contained in:
parent
c8fca83f51
commit
a527e5108c
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ public class ChatSession {
|
|||
message = " has lost connection";
|
||||
break;
|
||||
default:
|
||||
logger.debug(userName + " left chat with reason: " + reason.name() + " " + chatId);
|
||||
logger.debug(userName + " left chat " + chatId + " with reason: " + (reason == null ?"null":reason.toString()));
|
||||
}
|
||||
if (message != null) {
|
||||
broadcast(null, new StringBuilder(userName).append(message).toString(), MessageColor.BLUE, true, MessageType.STATUS);
|
||||
|
|
Loading…
Reference in a new issue