summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/lib/qa_logger.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gnuradio-runtime/lib/qa_logger.cc')
-rw-r--r--gnuradio-runtime/lib/qa_logger.cc25
1 files changed, 13 insertions, 12 deletions
diff --git a/gnuradio-runtime/lib/qa_logger.cc b/gnuradio-runtime/lib/qa_logger.cc
index dc47b53cef..ca322cb9ff 100644
--- a/gnuradio-runtime/lib/qa_logger.cc
+++ b/gnuradio-runtime/lib/qa_logger.cc
@@ -32,19 +32,20 @@
#include <gnuradio/logger.h>
#include <boost/test/unit_test.hpp>
-BOOST_AUTO_TEST_CASE(t1) {
+BOOST_AUTO_TEST_CASE(t1)
+{
#ifdef ENABLE_GR_LOG
- // This doesn't really test anything, more just
- // making sure nothing's gone horribly wrong.
+ // This doesn't really test anything, more just
+ // making sure nothing's gone horribly wrong.
- GR_LOG_GETLOGGER(LOG,"main");
- GR_ADD_CONSOLE_APPENDER("main","cout","%d{%H:%M:%S} : %m%n");
- GR_LOG_NOTICE(LOG,"test from c++ NOTICE");
- GR_LOG_DEBUG(LOG,"test from c++ DEBUG");
- GR_LOG_INFO(LOG,"test from c++ INFO");
- GR_LOG_WARN(LOG,"test from c++ WARN");
- GR_LOG_ERROR(LOG,"test from c++ ERROR");
- GR_LOG_FATAL(LOG,"test from c++ FATAL");
- BOOST_CHECK(true);
+ GR_LOG_GETLOGGER(LOG, "main");
+ GR_ADD_CONSOLE_APPENDER("main", "cout", "%d{%H:%M:%S} : %m%n");
+ GR_LOG_NOTICE(LOG, "test from c++ NOTICE");
+ GR_LOG_DEBUG(LOG, "test from c++ DEBUG");
+ GR_LOG_INFO(LOG, "test from c++ INFO");
+ GR_LOG_WARN(LOG, "test from c++ WARN");
+ GR_LOG_ERROR(LOG, "test from c++ ERROR");
+ GR_LOG_FATAL(LOG, "test from c++ FATAL");
+ BOOST_CHECK(true);
#endif
}