mirror of
https://github.com/correl/mage.git
synced 2025-04-09 17:00:09 -09:00
Changed debug message.
This commit is contained in:
parent
7ef232c556
commit
c8fca83f51
1 changed files with 2 additions and 1 deletions
|
@ -66,7 +66,8 @@ public class ChatSession {
|
||||||
}
|
}
|
||||||
|
|
||||||
synchronized public void kill(UUID userId, DisconnectReason reason) {
|
synchronized public void kill(UUID userId, DisconnectReason reason) {
|
||||||
logger.debug("ChatSession.kill userId: " + userId + " reason: " + (reason == null?"null":reason.toString()));
|
logger.debug("ChatSession.kill chatSession: " + chatId + " userId: " + userId + " reason: " + (reason == null?"null":reason.toString())
|
||||||
|
+ " clients.size " + clients.size() + " userid " + (clients.containsKey(userId) ?"contained":"NOT contained"));
|
||||||
try {
|
try {
|
||||||
if (userId != null && clients.containsKey(userId)) {
|
if (userId != null && clients.containsKey(userId)) {
|
||||||
String userName = clients.get(userId);
|
String userName = clients.get(userId);
|
||||||
|
|
Loading…
Add table
Reference in a new issue