aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib
diff options
context:
space:
mode:
authormichael-west <michael.west@ettus.com>2020-06-30 09:52:12 -0700
committerAaron Rossetto <aaron.rossetto@ni.com>2020-08-04 15:41:07 -0500
commitf37214061092ef6234df8325c9b9d98f9791b1f1 (patch)
treeb986e91c7e8ad1a8f53d9b0e570af438b9c78fe8 /host/lib
parent57c39779f1c7f8fe78e5c1d326a59d7a172e3de3 (diff)
downloaduhd-f37214061092ef6234df8325c9b9d98f9791b1f1.tar.gz
uhd-f37214061092ef6234df8325c9b9d98f9791b1f1.tar.bz2
uhd-f37214061092ef6234df8325c9b9d98f9791b1f1.zip
RFNoC: Demote MTU message in radio control
Change message from warning to debug when spp is greater than MTU. Signed-off-by: michael-west <michael.west@ettus.com>
Diffstat (limited to 'host/lib')
-rw-r--r--host/lib/rfnoc/radio_control_impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/rfnoc/radio_control_impl.cpp b/host/lib/rfnoc/radio_control_impl.cpp
index cd914852d..23a885a83 100644
--- a/host/lib/rfnoc/radio_control_impl.cpp
+++ b/host/lib/rfnoc/radio_control_impl.cpp
@@ -173,7 +173,7 @@ radio_control_impl::radio_control_impl(make_args_ptr make_args)
const int mtu_samps = mtu / (_samp_width / 8);
const int max_spp_per_mtu = mtu_samps - (mtu_samps % _spc);
if (spp.get() > max_spp_per_mtu) {
- RFNOC_LOG_WARNING("spp value " << spp.get() << " exceeds MTU of "
+ RFNOC_LOG_DEBUG("spp value " << spp.get() << " exceeds MTU of "
<< mtu << "! Coercing to "
<< max_spp_per_mtu);
spp = max_spp_per_mtu;