From 2e3e127e727674459e236479afcb1dbab32664dc Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Fri, 11 Oct 2013 14:32:21 -0500 Subject: [PATCH] Lack of a job_id should be a warning Signed-off-by: Zack Cerza --- teuthology/report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/report.py b/teuthology/report.py index a97a185436..7a97f06def 100644 --- a/teuthology/report.py +++ b/teuthology/report.py @@ -357,7 +357,7 @@ def try_push_job_info(job_config, extra_info=None): log.debug(msg.format(yaml=config.teuthology_yaml)) return elif job_config.get('job_id') is None: - log.debug('No job_id found; not reporting results') + log.warning('No job_id found; not reporting results') return run_name = job_config['name'] -- 2.39.5