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
This commit is contained in:
Phillip Webb
2016-11-15 15:46:19 -08:00
parent e7db7adfb8
commit 01c381f2a9

View File

@@ -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);