diff options
author | Tom Rondeau <tom@trondeau.com> | 2014-12-04 10:31:24 -0500 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2014-12-04 10:31:24 -0500 |
commit | 56f69533d1fa2114cd0a70516bdcc14243cfedfe (patch) | |
tree | 4a11337f2826c9860196d260885a483a90bf8d86 /gnuradio-runtime/lib/basic_block.cc | |
parent | 8236ec001ecacc8580325209bb79fee622939926 (diff) |
logger: adds a function to the logger facilities that allows us to update the format of the logging output.
Diffstat (limited to 'gnuradio-runtime/lib/basic_block.cc')
-rw-r--r-- | gnuradio-runtime/lib/basic_block.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnuradio-runtime/lib/basic_block.cc b/gnuradio-runtime/lib/basic_block.cc index 686c1d6e65..09d2eb2b3a 100644 --- a/gnuradio-runtime/lib/basic_block.cc +++ b/gnuradio-runtime/lib/basic_block.cc @@ -26,6 +26,7 @@ #include <gnuradio/basic_block.h> #include <gnuradio/block_registry.h> +#include <gnuradio/logger.h> #include <stdexcept> #include <sstream> #include <iostream> @@ -82,6 +83,7 @@ namespace gr { // set the block's alias d_symbol_alias = name; + update_logger_alias(symbol_name(), d_symbol_alias); } // ** Message passing interface ** |