Browse Source

Fixed typo in LoggingApplicationContextInitalizer initializeLogLeve->initializeLogLevel

pull/50/head
Biju Kunjummen 13 years ago committed by Phillip Webb
parent
commit
9d9b005c9f
  1. 4
      spring-boot/src/main/java/org/springframework/boot/context/initializer/LoggingApplicationContextInitializer.java

4
spring-boot/src/main/java/org/springframework/boot/context/initializer/LoggingApplicationContextInitializer.java

@ -157,11 +157,11 @@ public class LoggingApplicationContextInitializer implements @@ -157,11 +157,11 @@ public class LoggingApplicationContextInitializer implements
system.initialize();
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);
if (loggers != null) {
for (String logger : loggers) {

Loading…
Cancel
Save