From 1b34bc6f7cc4a09075cbf11a18594b5461b49c49 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 1 Mar 2023 14:43:51 +1000 Subject: [PATCH] test: distinguish better between stderr/stdout of the subprocess --- test/test_protocol.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_protocol.py b/test/test_protocol.py index 4f6ae31..d3cd0b8 100644 --- a/test/test_protocol.py +++ b/test/test_protocol.py @@ -304,10 +304,10 @@ class Eis: if stdout: for line in stdout.split("\n"): - logger.info(line) + logger.info(f"stdout: {line}") if stderr: for line in stderr.split("\n"): - logger.info(line) + logger.info(f"stderr: {line}") self.process.wait() rc = self.process.returncode if rc not in [0, -signal.SIGTERM]: