diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-04-30 14:17:32 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-04-30 14:17:32 -0400 |
commit | 5e17e3ea05631c9d1e47ae601859008e9c1f6be9 (patch) | |
tree | f3308fd98a617ad869366a31e4a70e2fa33ad9ee | |
parent | c5d5ce303206bc3c1d31462be2dfe01d798f077b (diff) |
runtime: stopped outputting logger configuration message.
-rw-r--r-- | gnuradio-runtime/lib/logger.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnuradio-runtime/lib/logger.cc b/gnuradio-runtime/lib/logger.cc index dceb18471f..ce14abdd3f 100644 --- a/gnuradio-runtime/lib/logger.cc +++ b/gnuradio-runtime/lib/logger.cc @@ -80,7 +80,7 @@ namespace gr { try { current_time = boost::filesystem::last_write_time(filename); if(current_time>last_write) { - std::cout<<"GNURadio Reloading logger configuration:"<<filename<<std::endl; + //std::cout<<"GNURadio Reloading logger configuration:"<<filename<<std::endl; last_write = current_time; // Should we wipe out all old configuration or just add the // new? Just adding... logger_reset_config(); @@ -109,7 +109,7 @@ namespace gr { if(instance.watch_thread!=NULL) stop_watch(); // Load configuration - std::cout<<"GNURadio Loading logger configuration:"<<instance.filename<<std::endl; + //std::cout<<"GNURadio Loading logger configuration:"<<instance.filename<<std::endl; logger_configured = logger_load_config(instance.filename); // Start watch if required if(instance.watch_period>0) { @@ -174,7 +174,7 @@ namespace gr { return true; } catch(log4cpp::ConfigureFailure &e) { - std::cout << "Logger config failed :" << e.what() << std::endl; + std::cerr << "Logger config failed :" << e.what() << std::endl; } } return false; |