From 57574fefc16c85088b9cb047d4fcbe571c226a7e Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Tue, 10 Dec 2013 13:19:56 -0600 Subject: [PATCH] Don't show child's stderr, but show archive path Signed-off-by: Zack Cerza --- teuthology/queue.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/teuthology/queue.py b/teuthology/queue.py index c4ef9f4bdc..fd8a7790ad 100644 --- a/teuthology/queue.py +++ b/teuthology/queue.py @@ -259,9 +259,11 @@ def run_job(job_config, teuth_bin_path): close_fds=True, stderr=subprocess.PIPE, ) - child = logging.getLogger(__name__ + '.child') - for line in p.stderr: - child.error(': %s', line.rstrip('\n')) + log.info("Job archive: %s", job_config['archive_path']) + # Disabling this for now to reduce noise + #child = logging.getLogger(__name__ + '.child') + #for line in p.stderr: + # child.error(': %s', line.rstrip('\n')) if teuth_config.results_server: log.info("Running with watchdog") -- 2.39.5