diff options
author | Martin Braun <martin.braun@ettus.com> | 2017-06-02 19:12:28 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-12-22 15:03:59 -0800 |
commit | 365c57b356c5814ac647233efb4a099b05a8c8e9 (patch) | |
tree | 955a33b630d3c5588e73bbfcd4e02a3e8ff72140 /mpm/python/usrp_mpm/chips | |
parent | 797b61a3fbc3092fbd37e9a31fe1986fccdb7899 (diff) | |
download | uhd-365c57b356c5814ac647233efb4a099b05a8c8e9.tar.gz uhd-365c57b356c5814ac647233efb4a099b05a8c8e9.tar.bz2 uhd-365c57b356c5814ac647233efb4a099b05a8c8e9.zip |
mpm: Minor logging improvement for LMK04828 classes
Diffstat (limited to 'mpm/python/usrp_mpm/chips')
-rw-r--r-- | mpm/python/usrp_mpm/chips/lmk04828.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mpm/python/usrp_mpm/chips/lmk04828.py b/mpm/python/usrp_mpm/chips/lmk04828.py index 91112817b..8cb48fffe 100644 --- a/mpm/python/usrp_mpm/chips/lmk04828.py +++ b/mpm/python/usrp_mpm/chips/lmk04828.py @@ -29,7 +29,7 @@ class LMK04828(object): def __init__(self, regs_iface, postfix=None): postfix = postfix or "" - self.log = get_logger("LMK04828{}".format(postfix)) + self.log = get_logger("LMK04828-{}".format(postfix)) self.regs_iface = regs_iface assert hasattr(self.regs_iface, 'peek8') assert hasattr(self.regs_iface, 'poke8') |