Remove logging level changes from devtools

Update `DevToolsPropertyDefaultsPostProcessor` to remove custom logging
level configuration. Unfortunately it's not easy to back-off logging
overrides when the user has a custom logback/log4j configuration.

Closes gh-14310
This commit is contained in:
Phillip Webb
2018-09-11 15:07:34 -07:00
parent 84b6fff8c0
commit aa2da0bb0d
2 changed files with 0 additions and 10 deletions

View File

@@ -59,9 +59,6 @@ public class DevToolsPropertyDefaultsPostProcessor implements EnvironmentPostPro
devToolsProperties.put("server.error.include-stacktrace", "ALWAYS");
devToolsProperties.put("server.servlet.jsp.init-parameters.development", "true");
devToolsProperties.put("spring.reactor.stacktrace-mode.enabled", "true");
devToolsProperties.put("logging.level.org.springframework.web", "DEBUG");
devToolsProperties.put("logging.level.org.springframework.core.codec", "DEBUG");
devToolsProperties.put("logging.level.org.springframework.http", "DEBUG");
PROPERTIES = Collections.unmodifiableMap(devToolsProperties);
}