closing lobby during game adds game to finished games list.

This commit is contained in:
Jonas
2022-04-18 22:39:10 +02:00
parent 15d342f14b
commit 1247bc2035
5 changed files with 18 additions and 6 deletions

View File

@@ -19,7 +19,7 @@ public class BudaLogConfig {
LoggerContext ctx = (LoggerContext) LogManager.getContext(false);
Configuration config = ctx.getConfiguration();
LoggerConfig loggerConfig = config.getLoggerConfig(LogManager.ROOT_LOGGER_NAME);
loggerConfig.setLevel(Level.INFO); // change level here
loggerConfig.setLevel(Level.ERROR); // change level here
ctx.updateLoggers(); // This causes all Loggers to refetch information from their LoggerConfig.
}