From fc217f00b8a4ee630ad2dbc8caca2520f5bfca2b Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Sun, 28 Oct 2012 18:36:09 -0700 Subject: [PATCH] Log level test was backwards. --- src/Application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application.cpp b/src/Application.cpp index b898cbdcc..d61c0f5bd 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -72,7 +72,7 @@ void Application::run() if (!theConfig.DEBUG_LOGFILE.empty()) { // Let DEBUG messages go to the file but only WARNING or higher to regular output (unless verbose) Log::setLogFile(theConfig.DEBUG_LOGFILE); - if (Log::getMinSeverity() > lsDEBUG) + if (Log::getMinSeverity() < lsDEBUG) LogPartition::setSeverity(lsDEBUG); }