X Tutup
Skip to content
This repository was archived by the owner on Feb 26, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@

public final class LoggerContext {

public static final Option OPTION_LOG_LEVEL = new Option("logLevel", "DEBUG");
public static final Option OPTION_LOG_LEVEL = new Option("logLevel", "WARN");
public static final Option OPTION_LOG_APPENDER_CONSOLE = new Option("logAppenderConsole", "false");
public static final Option OPTION_LOG_APPENDER_FILE = new Option("logAppenderFile", "true");

private static LoggerContext instance = null;
private static final Level DEFAULT_LEVEL = Level.DEBUG;
private static final Level DEFAULT_LEVEL = Level.WARN;

private Level currentLevel = DEFAULT_LEVEL;
private List<Appender> appenders = new ArrayList<>();
Expand Down
X Tutup