aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/python/usrp_mpm/periph_manager/base.py
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2018-03-06 15:16:22 -0800
committerMartin Braun <martin.braun@ettus.com>2018-03-06 15:28:33 -0800
commited2d1ac3e47f107ebef8845130ad60ea2777443c (patch)
treebfc80a509dc4855f62d69f032cea02ce9fee0b95 /mpm/python/usrp_mpm/periph_manager/base.py
parent38a7bcbff496ad1097c158ae1ba847abeab6d144 (diff)
downloaduhd-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/periph_manager/base.py')
-rw-r--r--mpm/python/usrp_mpm/periph_manager/base.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/mpm/python/usrp_mpm/periph_manager/base.py b/mpm/python/usrp_mpm/periph_manager/base.py
index 83096c994..6e72950fb 100644
--- a/mpm/python/usrp_mpm/periph_manager/base.py
+++ b/mpm/python/usrp_mpm/periph_manager/base.py
@@ -257,7 +257,7 @@ class PeriphManagerBase(object):
eeprom_md,
device_args,
)
- self.log.trace("Motherboard requires device tree overlays: {}".format(
+ self.log.trace("Motherboard requests device tree overlays: {}".format(
requested_overlays
))
for overlay in requested_overlays:
@@ -273,7 +273,7 @@ class PeriphManagerBase(object):
# Go, go, go!
override_dboard_pids = override_dboard_pids or []
if override_dboard_pids:
- self.log.warning("Overriding daughterboard PIDs! {}"
+ self.log.warning("Overriding daughterboard PIDs with: {}"
.format(override_dboard_pids))
dboard_eeprom_addrs = self.dboard_eeprom_addr \
if isinstance(self.dboard_eeprom_addr, list) \
@@ -315,7 +315,7 @@ class PeriphManagerBase(object):
else:
db_pid = dboard_eeprom_md.get('pid')
if db_pid is None:
- self.log.warning("No dboard PID found!")
+ self.log.warning("No dboard PID found in dboard EEPROM!")
else:
self.log.debug("Found dboard PID in EEPROM: 0x{:04X}"
.format(db_pid))
@@ -327,7 +327,7 @@ class PeriphManagerBase(object):
if len(self.dboard_spimaster_addrs) > dboard_idx:
spi_nodes = sorted(get_spidev_nodes(
self.dboard_spimaster_addrs[dboard_idx]))
- self.log.debug("Found spidev nodes: {0}".format(spi_nodes))
+ self.log.trace("Found spidev nodes: {0}".format(spi_nodes))
else:
spi_nodes = []
self.log.warning("No SPI nodes for dboard %d.", dboard_idx)
@@ -363,7 +363,7 @@ class PeriphManagerBase(object):
args -- A dictionary of args for initialization. Similar to device args
in UHD.
"""
- self.log.info("Mboard init() called with device args `{}'.".format(
+ self.log.info("init() called with device args `{}'.".format(
",".join(['{}={}'.format(x, args[x]) for x in args])
))
if not self._device_initialized:
@@ -407,7 +407,7 @@ class PeriphManagerBase(object):
Tear down all members that need to be specially handled before
deconstruction.
"""
- self.log.debug("Teardown called for Peripheral Manager base.")
+ self.log.trace("Teardown called for Peripheral Manager base.")
###########################################################################
# Misc device status controls and indicators
@@ -814,7 +814,7 @@ class PeriphManagerBase(object):
Consider this a "post claim hook", not a function to actually claim
this device (which happens outside of this class).
"""
- self.log.debug("Device was claimed. No actions defined.")
+ self.log.trace("Device was claimed. No actions defined.")
def unclaim(self):
"""