aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/python/usrp_mpm/periph_manager
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2018-03-13 16:16:29 -0700
committerMartin Braun <martin.braun@ettus.com>2018-03-13 16:19:03 -0700
commit86b95486ed6d68e2772d79f20feddbef5439981b (patch)
treeafa04a57f2d77f6b83e210b82f282fa5d18b2236 /mpm/python/usrp_mpm/periph_manager
parent398d7bb587d9e91d02400cbf022344be3ac26bbb (diff)
downloaduhd-86b95486ed6d68e2772d79f20feddbef5439981b.tar.gz
uhd-86b95486ed6d68e2772d79f20feddbef5439981b.tar.bz2
uhd-86b95486ed6d68e2772d79f20feddbef5439981b.zip
mpm: Add INFO log statements on MPM reset and component update
Diffstat (limited to 'mpm/python/usrp_mpm/periph_manager')
-rw-r--r--mpm/python/usrp_mpm/periph_manager/base.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/mpm/python/usrp_mpm/periph_manager/base.py b/mpm/python/usrp_mpm/periph_manager/base.py
index 60eaee244..f2b2aeb37 100644
--- a/mpm/python/usrp_mpm/periph_manager/base.py
+++ b/mpm/python/usrp_mpm/periph_manager/base.py
@@ -552,6 +552,7 @@ class PeriphManagerBase(object):
f.write(data)
update_func = \
getattr(self, self.updateable_components[id_str]['callback'])
+ self.log.info("Updating component `%s'", id_str)
update_func(filepath, metadata)
return True