diff options
author | Martin Braun <martin.braun@ettus.com> | 2018-03-29 16:36:29 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-03-30 14:22:33 -0700 |
commit | 9dddec48e7f5516e0c603d3eb540a169b50fa5a9 (patch) | |
tree | 92c0b5835a769d4f82552ff6f5df0f5c8e0fdafe /host/lib/rfnoc/node_ctrl_base.cpp | |
parent | ffeeb0362beb1368966a2ab54a2c2317485f504a (diff) | |
download | uhd-9dddec48e7f5516e0c603d3eb540a169b50fa5a9.tar.gz uhd-9dddec48e7f5516e0c603d3eb540a169b50fa5a9.tar.bz2 uhd-9dddec48e7f5516e0c603d3eb540a169b50fa5a9.zip |
rfnoc: Update logging in some blocks
Updated the following blocks and components: Radio, DmaFIFO,
block_ctrl_base and node_ctrl_base, blockdef_xml_impl, device3_impl.
No functional changes.
- Demoted some log messages
- Consistent log style (use unique_id())
- Some adaptation of coding style where close to log statements
Diffstat (limited to 'host/lib/rfnoc/node_ctrl_base.cpp')
-rw-r--r-- | host/lib/rfnoc/node_ctrl_base.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/rfnoc/node_ctrl_base.cpp b/host/lib/rfnoc/node_ctrl_base.cpp index 7828cd514..60496798d 100644 --- a/host/lib/rfnoc/node_ctrl_base.cpp +++ b/host/lib/rfnoc/node_ctrl_base.cpp @@ -20,7 +20,7 @@ std::string node_ctrl_base::unique_id() const void node_ctrl_base::clear() { - UHD_RFNOC_BLOCK_TRACE() << "node_ctrl_base::clear() " ; + UHD_LOG_TRACE(unique_id(), "node_ctrl_base::clear()"); // Reset connections: _upstream_nodes.clear(); _downstream_nodes.clear(); |