From f37214061092ef6234df8325c9b9d98f9791b1f1 Mon Sep 17 00:00:00 2001 From: michael-west Date: Tue, 30 Jun 2020 09:52:12 -0700 Subject: RFNoC: Demote MTU message in radio control Change message from warning to debug when spp is greater than MTU. Signed-off-by: michael-west --- host/lib/rfnoc/radio_control_impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'host/lib') 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; -- cgit v1.2.3