aboutsummaryrefslogtreecommitdiffstats
path: root/mpm
diff options
context:
space:
mode:
authorMark Meserve <mark.meserve@ni.com>2018-10-24 14:21:15 -0500
committerMartin Braun <martin.braun@ettus.com>2018-10-24 15:20:27 -0700
commit2801dc0f4e3cf7dd3e9a4bc60a7a44f391a6a4a1 (patch)
tree44221000eb8f56bb0980cd6c5565c946cc44747c /mpm
parentf2d2a226ecd5df1d3398066d4a8a1eb01d684b74 (diff)
downloaduhd-2801dc0f4e3cf7dd3e9a4bc60a7a44f391a6a4a1.tar.gz
uhd-2801dc0f4e3cf7dd3e9a4bc60a7a44f391a6a4a1.tar.bz2
uhd-2801dc0f4e3cf7dd3e9a4bc60a7a44f391a6a4a1.zip
n3xx: output exception string on boot init failure
Diffstat (limited to 'mpm')
-rw-r--r--mpm/python/usrp_mpm/periph_manager/n3xx.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpm/python/usrp_mpm/periph_manager/n3xx.py b/mpm/python/usrp_mpm/periph_manager/n3xx.py
index 8e396411d..33966a9cb 100644
--- a/mpm/python/usrp_mpm/periph_manager/n3xx.py
+++ b/mpm/python/usrp_mpm/periph_manager/n3xx.py
@@ -217,7 +217,7 @@ class n3xx(ZynqComponents, PeriphManagerBase):
if not args.get('skip_boot_init', False):
self.init(args)
except Exception as ex:
- self.log.warning("Failed to init device on boot!")
+ self.log.warning("Failed to initialize device on boot: %s", str(ex))
def _check_fpga_compat(self):
" Throw an exception if the compat numbers don't match up "