From 920993a64ae857d910a9006a2adfb17f5647a897 Mon Sep 17 00:00:00 2001 From: fmessmer Date: Tue, 20 Aug 2024 10:08:43 +0200 Subject: [PATCH] debug logging output for pre_condition --- robmuxinator/robmuxinator.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/robmuxinator/robmuxinator.py b/robmuxinator/robmuxinator.py index af0f14e..e2c7fdf 100755 --- a/robmuxinator/robmuxinator.py +++ b/robmuxinator/robmuxinator.py @@ -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)