aboutsummaryrefslogtreecommitdiffstats
path: root/mpm
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2018-01-19 15:12:57 -0800
committerMartin Braun <martin.braun@ettus.com>2018-01-19 17:00:48 -0800
commit15e36d8c36685d11fc6b55744ed73078746e100b (patch)
tree96b5045165dfe5fc65820dfe5d656ba0b79d80b8 /mpm
parent20129d3e3a1f3e9bd369bb52f8c52810f04b7174 (diff)
downloaduhd-15e36d8c36685d11fc6b55744ed73078746e100b.tar.gz
uhd-15e36d8c36685d11fc6b55744ed73078746e100b.tar.bz2
uhd-15e36d8c36685d11fc6b55744ed73078746e100b.zip
mpm: Demoting watchdog related log message to DEBUG
Diffstat (limited to 'mpm')
-rw-r--r--mpm/python/usrp_mpm/sys_utils/watchdog.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/mpm/python/usrp_mpm/sys_utils/watchdog.py b/mpm/python/usrp_mpm/sys_utils/watchdog.py
index 8f89471dc..3c0a48f4a 100644
--- a/mpm/python/usrp_mpm/sys_utils/watchdog.py
+++ b/mpm/python/usrp_mpm/sys_utils/watchdog.py
@@ -43,7 +43,8 @@ def _watchdog_task(shared_state, log):
)) / 1e6
watchdog_interval = watchdog_timeout / MPM_WATCHDOG_TIMEOUT_FRAC
daemon.notify("READY=1")
- log.info("READY=1, interval %f", watchdog_interval)
+ log.debug("Watchdog primed, going into watchdog loop (Interval: %s s)",
+ watchdog_interval)
while shared_state.system_ready.value:
# Sleep first, then ping, that avoids the case where transfer_control()
# is not yet complete before we call this for the first time, which