From 4f217771f0fe7707a8dc44a7ea546745a398c404 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Thu, 5 Jun 2014 16:43:29 +0200 Subject: [PATCH] Tweaked debug messages of controller when changing debug level. --- src/controller/controller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controller/controller.cpp b/src/controller/controller.cpp index 4fe8208a..ac3577d4 100644 --- a/src/controller/controller.cpp +++ b/src/controller/controller.cpp @@ -226,7 +226,7 @@ namespace Controller { if (out.isMember("debug")){ if (Util::Config::printDebugLevel != out["debug"].asInt()){ Util::Config::printDebugLevel = out["debug"].asInt(); - DEBUG_MSG(Util::Config::printDebugLevel, "Debug level set to %u", Util::Config::printDebugLevel); + INFO_MSG("Debug level set to %u", Util::Config::printDebugLevel); } } }