summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnuradio-runtime/lib/logger.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/logger.cc b/gnuradio-runtime/lib/logger.cc
index 29dde5a124..fd9a482c94 100644
--- a/gnuradio-runtime/lib/logger.cc
+++ b/gnuradio-runtime/lib/logger.cc
@@ -221,7 +221,7 @@ namespace gr {
logger_get_level(logger_ptr logger, std::string &level)
{
log4cpp::Priority::Value levelPtr = logger->getPriority();
- if(levelPtr == log4cpp::Priority::NOTSET) level = "noset";
+ if(levelPtr == log4cpp::Priority::NOTSET) level = "notset";
if(levelPtr == log4cpp::Priority::DEBUG) level = "debug";
if(levelPtr == log4cpp::Priority::INFO) level = "info";
if(levelPtr == log4cpp::Priority::NOTICE) level = "notice";