Skip to content

Commit

Permalink
Typo correction (#2206)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregor7008 committed Aug 18, 2022
1 parent 4642660 commit 67566a8
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -36,7 +36,7 @@
class SimpleLogger extends MarkerIgnoringBase {

private static final long serialVersionUID = -632788891211436180L;
private static final String CONFIGURATION_FILE = "Loggerger.properties";
private static final String CONFIGURATION_FILE = "Logger.properties";

private static long START_TIME = System.currentTimeMillis();
private static final Properties SIMPLE_LOGGER_PROPS = new Properties();
Expand All @@ -61,7 +61,7 @@ class SimpleLogger extends MarkerIgnoringBase {
private static boolean LEVEL_IN_BRACKETS = false;
private static String WARN_LEVEL_STRING = "WARN";

public static final String SYSTEM_PREFIX = "org.slf4j.Loggerger.";
public static final String SYSTEM_PREFIX = "org.slf4j.Logger.";

public static final String DEFAULT_LOG_LEVEL_KEY = SYSTEM_PREFIX + "defaultLogLevel";
public static final String SHOW_DATE_TIME_KEY = SYSTEM_PREFIX + "showDateTime";
Expand Down Expand Up @@ -141,7 +141,7 @@ else if ("System.out".equalsIgnoreCase(logFile)) {
}

private static void loadProperties() {
// Add props from the resource Loggerger.properties
// Add props from the resource Logger.properties
InputStream in = AccessController.doPrivileged(new PrivilegedAction<InputStream>() {
public InputStream run() {
ClassLoader threadCL = Thread.currentThread().getContextClassLoader();
Expand Down

0 comments on commit 67566a8

Please sign in to comment.