Chat is logged on trace level now.

This commit is contained in:
marcins78@gmail.com
2013-01-12 14:07:44 +00:00
parent 1ef011e66d
commit a5b6e07893

View File

@@ -86,7 +86,7 @@ public class ChatRoomMediator {
if (!admin && _allowedPlayers != null && !_allowedPlayers.contains(playerId))
throw new PrivateInformationException();
_logger.info(playerId+": "+message);
_logger.trace(playerId+": "+message);
_chatRoom.postMessage(playerId, message);
} finally {
_lock.writeLock().unlock();