aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/utils
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2020-03-11 14:24:11 -0700
committerAaron Rossetto <aaron.rossetto@ni.com>2020-03-12 07:27:46 -0500
commit38d52121f9174f03be0d778a433b3580a5eae301 (patch)
tree00427214a489da52218abe3d0ac5103aea51c95a /host/lib/utils
parent932bab1eae69a96679eea7e20c2b602c4a9a52b9 (diff)
downloaduhd-38d52121f9174f03be0d778a433b3580a5eae301.tar.gz
uhd-38d52121f9174f03be0d778a433b3580a5eae301.tar.bz2
uhd-38d52121f9174f03be0d778a433b3580a5eae301.zip
lib: gain_group: Remove spurious logs
Whenever gains where set through a gain_group, it would output spurious log messages that must stem from someone's debug code, since the log messages are not very useful by themselves.
Diffstat (limited to 'host/lib/utils')
-rw-r--r--host/lib/utils/gain_group.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/host/lib/utils/gain_group.cpp b/host/lib/utils/gain_group.cpp
index c414bc5ff..5544afb0c 100644
--- a/host/lib/utils/gain_group.cpp
+++ b/host/lib/utils/gain_group.cpp
@@ -150,11 +150,9 @@ public:
gain_bucket.at(i) += additional_gain;
gain_left_to_distribute -= additional_gain;
}
- UHD_LOGGER_DEBUG("UHD") << "gain_left_to_distribute " << gain_left_to_distribute;
// now write the bucket out to the individual gain values
for (size_t i = 0; i < gain_bucket.size(); i++) {
- UHD_LOGGER_DEBUG("UHD") << i << ": " << gain_bucket.at(i);
all_fcns.at(i).set_value(gain_bucket.at(i));
}
}