Skip to content

Commit

Permalink
Merge pull request #17 from fmessmer/feature/debug_pre_condition
Browse files Browse the repository at this point in the history
debug logging output for pre_condition
  • Loading branch information
fmessmer authored Aug 20, 2024
2 parents 27f45ff + 920993a commit 2c39abf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions robmuxinator/robmuxinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,10 @@ def start(self):
ret, stdout, stderr = self._ssh_client.send_cmd(
"{}".format(self._pre_condition), True
)
logger.debug("pre_condition: {}".format(self._pre_condition))
logger.debug("ret: {}".format(ret))
logger.debug("stdout: {}".format(stdout.getvalue()))
logger.debug("stderr: {}".format(stderr.getvalue()))
if not ret:
break
time.sleep(0.25)
Expand Down

0 comments on commit 2c39abf

Please sign in to comment.