diff options
author | Martin Braun <martin.braun@ettus.com> | 2018-07-30 15:58:09 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-07-31 10:11:22 -0700 |
commit | e570d13daa87011fe1044893ef42684d36e63fb3 (patch) | |
tree | 6db01e590156f19d0d4cd3177dc8450e5011a7ad | |
parent | 4b42ac06978aa2b3f5ca7f0e0fd7c024c749260c (diff) | |
download | uhd-e570d13daa87011fe1044893ef42684d36e63fb3.tar.gz uhd-e570d13daa87011fe1044893ef42684d36e63fb3.tar.bz2 uhd-e570d13daa87011fe1044893ef42684d36e63fb3.zip |
b100: Demote some clocking-related log messages to trace
-rw-r--r-- | host/lib/usrp/b100/clock_ctrl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/b100/clock_ctrl.cpp b/host/lib/usrp/b100/clock_ctrl.cpp index 58e57d7b5..7a089e293 100644 --- a/host/lib/usrp/b100/clock_ctrl.cpp +++ b/host/lib/usrp/b100/clock_ctrl.cpp @@ -138,7 +138,7 @@ static clock_settings_type get_clock_settings(double rate){ cs.chan_divider /= cs.vco_divider; } - UHD_LOGGER_DEBUG("B100") + UHD_LOGGER_TRACE("B100") << "gcd: " << gcd << " X: " << X << " Y: " << Y @@ -156,7 +156,7 @@ static clock_settings_type get_clock_settings(double rate){ if (cs.get_vco_rate() < 1400e6 + vco_bound_pad) continue; if (cs.get_out_rate() != rate) continue; - UHD_LOGGER_INFO("B100") << "USRP-B100 clock control: " << i << cs.to_pp_string() ; + UHD_LOGGER_TRACE("B100") << "USRP-B100 clock control: " << i << cs.to_pp_string() ; return cs; } } |