aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2023-02-07 18:41:57 +0100
committermichael-west <michael.west@ettus.com>2023-03-03 12:11:12 -0800
commita7adda97bbc80843f1b6da912df863458fb99522 (patch)
treeb35f62464c6d1057d40f4736316caaa6ddde30eb
parentmpm: Fix test utilities (diff)
downloaduhd-a7adda97bbc80843f1b6da912df863458fb99522.tar.xz
uhd-a7adda97bbc80843f1b6da912df863458fb99522.zip
rfnoc: Demote some de-init DEBUG messages
The following type of DEBUG log messages are demoted to TRACE: [DEBUG] [0/DDC#1] deinit() called, but not implemented. [DEBUG] [0/DDC#1] Invalidating register interface These are harmless messages, and they aren't necessary to show users at DEBUG level.
-rw-r--r--host/lib/rfnoc/noc_block_base.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/rfnoc/noc_block_base.cpp b/host/lib/rfnoc/noc_block_base.cpp
index e3cee7bad..b6a16cd21 100644
--- a/host/lib/rfnoc/noc_block_base.cpp
+++ b/host/lib/rfnoc/noc_block_base.cpp
@@ -347,7 +347,7 @@ void noc_block_base::shutdown()
{
RFNOC_LOG_TRACE("Calling deinit()");
deinit();
- RFNOC_LOG_DEBUG("Invalidating register interface");
+ RFNOC_LOG_TRACE("Invalidating register interface");
update_reg_iface();
}
@@ -368,5 +368,5 @@ std::shared_ptr<mb_controller> noc_block_base::get_mb_controller()
void noc_block_base::deinit()
{
- RFNOC_LOG_DEBUG("deinit() called, but not implemented.");
+ RFNOC_LOG_TRACE("deinit() called, but not implemented.");
}