Browse Source

Remove empty logger from default logback config

Remove the empty logger as it was not also defined in `defaults.xml`
and caused rendering issues with the new `/loggers` endpoint.

Fixes gh-7386
pull/7373/merge
Phillip Webb 9 years ago
parent
commit
01c381f2a9
  1. 1
      spring-boot/src/main/java/org/springframework/boot/logging/logback/DefaultLogbackConfiguration.java

1
spring-boot/src/main/java/org/springframework/boot/logging/logback/DefaultLogbackConfiguration.java

@ -95,7 +95,6 @@ class DefaultLogbackConfiguration { @@ -95,7 +95,6 @@ class DefaultLogbackConfiguration {
"org.springframework.boot");
config.start(debugRemapAppender);
config.appender("DEBUG_LEVEL_REMAPPER", debugRemapAppender);
config.logger("", Level.ERROR);
config.logger("org.apache.catalina.startup.DigesterFactory", Level.ERROR);
config.logger("org.apache.catalina.util.LifecycleBase", Level.ERROR);
config.logger("org.apache.coyote.http11.Http11NioProtocol", Level.WARN);

Loading…
Cancel
Save