Skip to content

Commit a29bb77

Browse files
add logs;
1 parent acb7aeb commit a29bb77

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/executor.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,13 @@ def _run_command(self, command, defaults_url=None, apps_url=None):
290290
self.logger.info("PROC created")
291291
lines = []
292292
err_lines = []
293+
self.logger.info("START RECORDING STDOUT")
293294
for line in iter(proc.stdout.readline, ''):
295+
self.logger.info(line)
294296
lines.append(line)
297+
self.logger.info("START RECORDING STDERR")
295298
for line in iter(proc.stderr.readline, ''):
299+
self.logger.info(line)
296300
err_lines.append(line)
297301
self.logger.info("PROC close stdout")
298302
proc.stdout.close()

0 commit comments

Comments
 (0)