1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-01 19:07:57 -09:00

Changed debug message.

This commit is contained in:
LevelX2 2014-07-22 08:33:31 +02:00
parent 7ef232c556
commit c8fca83f51

View file

@ -66,7 +66,8 @@ public class ChatSession {
}
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 {
if (userId != null && clients.containsKey(userId)) {
String userName = clients.get(userId);