mirror of
https://github.com/magefree/mage.git
synced 2026-01-20 02:10:06 -08:00
Added default charset information in startup logs
This commit is contained in:
parent
57dba8c02a
commit
b610d0a31a
3 changed files with 7 additions and 0 deletions
|
|
@ -31,6 +31,7 @@ import org.mage.test.player.TestPlayer;
|
|||
|
||||
import java.io.File;
|
||||
import java.io.FileNotFoundException;
|
||||
import java.nio.charset.Charset;
|
||||
import java.util.*;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
|
@ -104,6 +105,8 @@ public abstract class MageTestPlayerBase {
|
|||
Logger.getRootLogger().setLevel(Level.DEBUG);
|
||||
logger.debug("Starting MAGE tests");
|
||||
logger.debug("Logging level: " + logger.getLevel());
|
||||
logger.debug("Default charset: " + Charset.defaultCharset());
|
||||
|
||||
deleteSavedGames();
|
||||
ConfigSettings config = ConfigSettings.instance;
|
||||
for (GamePlugin plugin : config.getGameTypes()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue