* Some changes to logging.

This commit is contained in:
LevelX2 2014-10-13 08:39:40 +02:00
parent bdd163080d
commit d03966738e
2 changed files with 1 additions and 5 deletions

View file

@ -1632,11 +1632,8 @@ public abstract class PlayerImpl implements Player, Serializable {
@Override
public void concede(Game game) {
logger.debug(this.getName() + (" concedes gameId:" +game.getId()));
game.gameOver(playerId);
logger.debug("Before lost " + this.getName());
lost(game);
logger.debug("After lost " + this.getName());
this.left = true;
}