complete overhaul of client / server communication. Several methods renamed, tweaked protocol.

This commit is contained in:
Jonas
2022-04-02 17:10:29 +02:00
parent 52a6a0cd65
commit f677f5cb71
9 changed files with 70 additions and 59 deletions

View File

@@ -16,7 +16,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.TRACE); // change level here
loggerConfig.setLevel(Level.DEBUG); // change level here
ctx.updateLoggers(); // This causes all Loggers to refetch information from their LoggerConfig.
}