diff options
author | Martin Braun <martin.braun@ettus.com> | 2018-03-06 15:16:22 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-03-06 15:28:33 -0800 |
commit | ed2d1ac3e47f107ebef8845130ad60ea2777443c (patch) | |
tree | bfc80a509dc4855f62d69f032cea02ce9fee0b95 /mpm/python/usrp_mpm/chips | |
parent | 38a7bcbff496ad1097c158ae1ba847abeab6d144 (diff) | |
download | uhd-ed2d1ac3e47f107ebef8845130ad60ea2777443c.tar.gz uhd-ed2d1ac3e47f107ebef8845130ad60ea2777443c.tar.bz2 uhd-ed2d1ac3e47f107ebef8845130ad60ea2777443c.zip |
mpm: Demote some log messages
The log output at level 'INFO' was pretty cluttered. This cleans up the
log messages at the higher levels. In some cases, log message typos or
capitalizations were also fixed.
Diffstat (limited to 'mpm/python/usrp_mpm/chips')
-rw-r--r-- | mpm/python/usrp_mpm/chips/lmk04828.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mpm/python/usrp_mpm/chips/lmk04828.py b/mpm/python/usrp_mpm/chips/lmk04828.py index c0496a6af..5075f1bbf 100644 --- a/mpm/python/usrp_mpm/chips/lmk04828.py +++ b/mpm/python/usrp_mpm/chips/lmk04828.py @@ -64,8 +64,8 @@ class LMK04828(object): """ pll_lock_status = self.regs_iface.peek8(addr) if (pll_lock_status & 0x7) != 0x02: - self.log.warning("{} reporting unlocked... Status: 0x{:x}" - .format(pll_id, pll_lock_status)) + self.log.debug("{} reporting unlocked... Status: 0x{:x}" + .format(pll_id, pll_lock_status)) return False return True lock_status = \ |