Commit 580ec272 authored by Biju Kunjummen's avatar Biju Kunjummen Committed by Dave Syer

Fixed typo in LoggingApplicationContextInitalizer initializeLogLeve->initializeLogLevel

parent 81603998
...@@ -157,11 +157,11 @@ public class LoggingApplicationContextInitializer implements ...@@ -157,11 +157,11 @@ public class LoggingApplicationContextInitializer implements
system.initialize(); system.initialize();
if (this.springBootLogging != null) { if (this.springBootLogging != null) {
initializeLogLeve(system, this.springBootLogging); initializeLogLevel(system, this.springBootLogging);
} }
} }
protected void initializeLogLeve(LoggingSystem system, LogLevel level) { protected void initializeLogLevel(LoggingSystem system, LogLevel level) {
List<String> loggers = LOG_LEVEL_LOGGERS.get(level); List<String> loggers = LOG_LEVEL_LOGGERS.get(level);
if (loggers != null) { if (loggers != null) {
for (String logger : loggers) { for (String logger : loggers) {
......
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