From 339b7c474a9a9aa6b1971872e7675cc479ed1429 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Tue, 10 Dec 2013 10:06:16 -0600 Subject: [PATCH] Add debug statements Signed-off-by: Zack Cerza --- teuthology/queue.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/teuthology/queue.py b/teuthology/queue.py index 287a6798b2916..c4ef9f4bdc1aa 100644 --- a/teuthology/queue.py +++ b/teuthology/queue.py @@ -264,8 +264,10 @@ def run_job(job_config, teuth_bin_path): child.error(': %s', line.rstrip('\n')) if teuth_config.results_server: + log.info("Running with watchdog") run_with_watchdog(p, job_config) else: + log.info("Running without watchdog") p.wait() if p.returncode != 0: -- 2.39.5