From 09be0518cee887878f3b070adea25eccc4c06e60 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Wed, 4 May 2011 19:53:01 -0700 Subject: uhd: removed more iostream stuff from usrp* implementations --- host/lib/utils/log.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'host/lib/utils/log.cpp') diff --git a/host/lib/utils/log.cpp b/host/lib/utils/log.cpp index d99ce01c4..f67a14411 100644 --- a/host/lib/utils/log.cpp +++ b/host/lib/utils/log.cpp @@ -140,7 +140,7 @@ private: //! set the log level from a string that is either a digit or an enum name void _set_log_level(const std::string &log_level_str){ const uhd::_log::verbosity_t log_level = uhd::_log::verbosity_t(log_level_str[0]-'0'); - if (std::isdigit(log_level_str[0]) and log_level >= uhd::_log::always and log_level <= uhd::_log::very_rarely){ + if (std::isdigit(log_level_str[0]) and log_level >= uhd::_log::always and log_level <= uhd::_log::never){ _log_level = log_level; } #define if_lls_equal(name) else if(log_level_str == #name) _log_level = uhd::_log::name @@ -149,6 +149,7 @@ private: if_lls_equal(regularly); if_lls_equal(rarely); if_lls_equal(very_rarely); + if_lls_equal(never); } //available stream objects -- cgit v1.2.3