mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00: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++;
|
||||
if (numTimesWaiting >= 300) {
|
||||
// game freezed -- need to report about error and continue to execute
|
||||
String s = "Game freezed in waitResponseOpen for user " + getName();
|
||||
Throwable th = new IllegalStateException(s);
|
||||
logger.error(s, th);
|
||||
String s = "ERROR - game freezed in waitResponseOpen for user " + getName() + " (connection problem)";
|
||||
//Throwable th = new IllegalStateException(s); stack info
|
||||
logger.error(s);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue