diff options
Diffstat (limited to 'gnuradio-runtime/lib/logger.cc')
-rw-r--r-- | gnuradio-runtime/lib/logger.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/logger.cc b/gnuradio-runtime/lib/logger.cc index ce2772cadf..6bcac914ed 100644 --- a/gnuradio-runtime/lib/logger.cc +++ b/gnuradio-runtime/lib/logger.cc @@ -194,7 +194,7 @@ void logger_set_level(logger_ptr logger, const std::string& level) else if (nocase == "emerg") logger_set_level(logger, log4cpp::Priority::EMERG); else - throw std::runtime_error("logger_set_level: Bad level type.\n"); + throw std::runtime_error("logger_set_level: Bad level type."); } void logger_set_level(logger_ptr logger, log4cpp::Priority::Value level) |