Some changes to debug messages and change to avoid conccurent change exception.

This commit is contained in:
LevelX2 2014-09-05 12:47:49 +02:00
parent 04d4e2cfd8
commit f12a616243
4 changed files with 22 additions and 20 deletions

View file

@ -159,7 +159,7 @@ public class ChatSession {
user.fireCallback(new ClientCallback("chatMessage", chatId, new ChatMessage(username, msg, time, color, messageType, soundToPlay)));
}
else {
logger.debug("user not found but chat still exists - userId: " + userId +" chatId: " +chatId);
logger.error("User not found but connected to chat - userId: " + userId + " chatId: " + chatId);
}
}
}