Added debug messages to narrow down #440.

This commit is contained in:
LevelX2 2014-07-21 15:19:50 +02:00
parent 142e95fe42
commit c70828bda0
2 changed files with 3 additions and 0 deletions

View file

@ -66,6 +66,7 @@ public class ChatSession {
}
synchronized public void kill(UUID userId, DisconnectReason reason) {
logger.debug("ChatSession.kill userId: " + userId + " reason: " + (reason == null?"null":reason.toString()));
try {
if (userId != null && clients.containsKey(userId)) {
String userName = clients.get(userId);