Skip to content

Commit 1f3fa45

Browse files
committed
Reduce logging after hardware validation
1 parent ede406d commit 1f3fa45

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

mpf/platforms/pololu/pololu_ticcmd_wrapper.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,10 @@ def _run_subprocess_ticcmd(self, *args):
9797
async def get_status(self):
9898
"""Return the current status of the TIC device."""
9999
cmd_return = await self._ticcmd_future('-s', '--full')
100-
self.log.info("get_status() received cmd_return: %s", cmd_return)
100+
self.log.debug("get_status() received cmd_return: %s", cmd_return)
101101
value = cmd_return.decode('utf-8')
102102
yaml = ruamel.yaml.YAML(typ='safe')
103103
status = yaml.load(value)
104-
self.log.info("yaml.load() generated status: %s", status)
105104
return status
106105

107106
def halt_and_hold(self):

0 commit comments

Comments
 (0)