Fixed a handling bug in TournamentController. Modified some debug messages.

This commit is contained in:
LevelX2 2014-07-30 14:38:55 +02:00
parent dcf8c8e45e
commit 8bf5f01c2e
3 changed files with 14 additions and 7 deletions

View file

@ -139,6 +139,7 @@ public class ChatSession {
user.fireCallback(new ClientCallback("chatMessage", chatId, new ChatMessage(username, msg, time, color, messageType, soundToPlay)));
}
else {
logger.debug("ChatSession.broadcast user not found - killed from chat session - userId: " + userId +" chatId: " +chatId);
kill(userId, DisconnectReason.CleaningUp);
}
}