Commit 298880c2 authored by Phillip Webb's avatar Phillip Webb

Polish formatting

parent b547a53b
......@@ -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);
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment