Log now have default Logger (for debugging purpose)

This commit is contained in:
Marc Baloup 2022-02-07 12:39:48 +01:00
parent 260eea0788
commit 66cbf8097c
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import java.util.logging.Logger;
public class Log {
private static Logger logger;
private static Logger logger = Logger.getGlobal();
private static AtomicBoolean logDebug = new AtomicBoolean(false);
public static void setDebug(boolean newVal) {