From a7adda97bbc80843f1b6da912df863458fb99522 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Tue, 7 Feb 2023 18:41:57 +0100 Subject: 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. --- host/lib/rfnoc/noc_block_base.cpp | 4 ++-- 1 file 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 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."); } -- cgit v1.2.3-59-g8ed1b