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/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/block.cc')
-rw-r--r-- | gnuradio-runtime/lib/block.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/block.cc b/gnuradio-runtime/lib/block.cc index 2cc868e844..9173094e53 100644 --- a/gnuradio-runtime/lib/block.cc +++ b/gnuradio-runtime/lib/block.cc @@ -60,7 +60,7 @@ namespace gr { message_port_register_in(pmt::mp("system")); set_msg_handler(pmt::mp("system"), boost::bind(&block::system_handler, this, _1)); - configure_default_loggers(d_logger, d_debug_logger, alias()); + configure_default_loggers(d_logger, d_debug_logger, symbol_name()); } block::~block() |