Fixed typo in LoggingApplicationContextInitalizer initializeLogLeve->initializeLogLevel

This commit is contained in:
Biju Kunjummen 2013-08-16 16:54:16 -04:00 committed by Phillip Webb
parent fa3b593568
commit 9d9b005c9f
1 changed files with 2 additions and 2 deletions

View File

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