Skip to content

Commit

Permalink
Polish formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
philwebb committed Nov 1, 2020
1 parent b547a53 commit 298880c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@ public class JavaLoggingSystem extends AbstractLoggingSystem {

private static final LogLevels<Level> LEVELS = new LogLevels<>();

private final Set<Logger> configuredLoggers = Collections.synchronizedSet(new HashSet<>());

static {
LEVELS.map(LogLevel.TRACE, Level.FINEST);
LEVELS.map(LogLevel.DEBUG, Level.FINE);
Expand All @@ -68,6 +66,8 @@ public class JavaLoggingSystem extends AbstractLoggingSystem {
LEVELS.map(LogLevel.OFF, Level.OFF);
}

private final Set<Logger> configuredLoggers = Collections.synchronizedSet(new HashSet<>());

public JavaLoggingSystem(ClassLoader classLoader) {
super(classLoader);
}
Expand Down

0 comments on commit 298880c

Please sign in to comment.