1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-10 17:00:08 -09:00

Removed unnecessary log info on user's freeze ()

This commit is contained in:
Oleg Agafonov 2018-03-22 11:58:14 +04:00
parent 270951bf89
commit ddc43d05f6

View file

@ -156,9 +156,9 @@ public class HumanPlayer extends PlayerImpl {
numTimesWaiting++; numTimesWaiting++;
if (numTimesWaiting >= 300) { if (numTimesWaiting >= 300) {
// game freezed -- need to report about error and continue to execute // game freezed -- need to report about error and continue to execute
String s = "Game freezed in waitResponseOpen for user " + getName(); String s = "ERROR - game freezed in waitResponseOpen for user " + getName() + " (connection problem)";
Throwable th = new IllegalStateException(s); //Throwable th = new IllegalStateException(s); stack info
logger.error(s, th); logger.error(s);
break; break;
} }