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 (#4646)
This commit is contained in:
parent
270951bf89
commit
ddc43d05f6
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue