diff options
| author | Martin Braun <martin.braun@ettus.com> | 2017-11-15 17:20:47 -0800 | 
|---|---|---|
| committer | Martin Braun <martin.braun@ettus.com> | 2017-12-22 15:05:06 -0800 | 
| commit | d327a93530033a3e9f08f797e1b04f4357401e8e (patch) | |
| tree | 8cf671a829cbbfda26ec8ac166a455f3cb1567c1 /mpm/python/usrp_mpm | |
| parent | 03e088ed492a0b22d927c6306f3681d279b38308 (diff) | |
| download | uhd-d327a93530033a3e9f08f797e1b04f4357401e8e.tar.gz uhd-d327a93530033a3e9f08f797e1b04f4357401e8e.tar.bz2 uhd-d327a93530033a3e9f08f797e1b04f4357401e8e.zip | |
mpm: Lower logging level for PeriphManagerBase.deinit()
Diffstat (limited to 'mpm/python/usrp_mpm')
| -rw-r--r-- | mpm/python/usrp_mpm/periph_manager/base.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/mpm/python/usrp_mpm/periph_manager/base.py b/mpm/python/usrp_mpm/periph_manager/base.py index 100a8852a..0a3882102 100644 --- a/mpm/python/usrp_mpm/periph_manager/base.py +++ b/mpm/python/usrp_mpm/periph_manager/base.py @@ -352,11 +352,11 @@ class PeriphManagerBase(object):      def deinit(self):          """ -        Power down a device after a UHD session. +        Clean up after a UHD session terminates.          This must be safe to call multiple times. The default behaviour is to          call deinit() on all the daughterboards.          """ -        self.log.info("Mboard deinit() called.") +        self.log.trace("Mboard deinit() called.")          for dboard in self.dboards:              dboard.deinit()          self.log.trace("Resetting SID pool...") | 
