diff --git a/mod/host.py b/mod/host.py index aba25d6f..0c055682 100644 --- a/mod/host.py +++ b/mod/host.py @@ -1061,7 +1061,7 @@ def wait_hmi_initialized(self, callback): def retry(): if (self.hmi.initialized and self.profile_applied) or self._attemptNumber >= 20: - logging.info("[host] HMI initialized FINAL", self._attemptNumber, self.hmi.initialized) + logging.info("[host] HMI initialized FINAL %d %d", self._attemptNumber, self.hmi.initialized) del self._attemptNumber if HMI_TIMEOUT > 0: self.ping_hmi_start() @@ -1069,7 +1069,7 @@ def retry(): else: self._attemptNumber += 1 IOLoop.instance().call_later(0.25, retry) - logging.info("[host] HMI initialized waiting", self._attemptNumber) + logging.info("[host] HMI initialized waiting %d", self._attemptNumber) self._attemptNumber = 0 retry()