Some changes to logging.

This commit is contained in:
LevelX2 2014-08-07 17:17:04 +02:00
parent 471c5bed4a
commit 49a23503a1
3 changed files with 1 additions and 2 deletions

View file

@ -29,7 +29,6 @@
package mage.view;
import java.io.Serializable;
import mage.constants.TournamentPlayerState;
import mage.game.tournament.TournamentPlayer;
/**

View file

@ -470,6 +470,7 @@ public class TableController {
} else {
User user = UserManager.getInstance().getUser(userId);
logger.info("MATCH started [" + match.getName() + "] " + match.getId() + "(" + user.getName() +")");
logger.debug("- " + match.getOptions().getGameType() + " - " + match.getOptions().getDeckType());
}
match.startMatch();
startGame(null);

View file

@ -35,7 +35,6 @@ import mage.abilities.effects.ReplacementEffectImpl;
import mage.constants.Duration;
import mage.constants.Outcome;
import mage.game.Game;
import mage.game.command.CommandObject;
import mage.game.events.GameEvent;
import mage.game.events.ManaEvent;
import org.apache.log4j.Logger;