From d04ac0299bd2ac6206bedd4da698d2c6b887bc15 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Sun, 28 Oct 2012 18:39:10 -0700 Subject: [PATCH] This was right before. --- src/Application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application.cpp b/src/Application.cpp index d61c0f5bd..b898cbdcc 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); }