[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 01/03: logger: fixed issue #851: "notset" i
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 01/03: logger: fixed issue #851: "notset" instead of "noset". |
Date: |
Fri, 30 Oct 2015 21:11:24 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch maint
in repository gnuradio.
commit 787441eddc1295c6d6426fa91a51844b9ac9c9e0
Author: Tom Rondeau <address@hidden>
Date: Thu Oct 29 15:22:26 2015 -0400
logger: fixed issue #851: "notset" instead of "noset".
---
gnuradio-runtime/lib/logger.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnuradio-runtime/lib/logger.cc b/gnuradio-runtime/lib/logger.cc
index 29dde5a..fd9a482 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";