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

@ -161,7 +161,7 @@ public class ChatManager {
}
public void removeUser(UUID userId, DisconnectReason reason) {
Logger.getLogger(ChatManager.class).debug("ChatManager: Remove user start");
Logger.getLogger(ChatManager.class).debug("ChatManager: Remove user start - chatSessions: " + chatSessions.size());
for (ChatSession chat: chatSessions.values()) {
chat.kill(userId, reason);
}