From e424d78c6b94a8268b51b86acf7a37f8ae51280a Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Mon, 27 Jan 2014 12:28:53 -0600 Subject: [PATCH] Be more verbose about log file locations Signed-off-by: Zack Cerza --- teuthology/queue.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/teuthology/queue.py b/teuthology/queue.py index a0e16be3..9a3e6f5a 100644 --- a/teuthology/queue.py +++ b/teuthology/queue.py @@ -203,7 +203,7 @@ def worker(ctx): ] subprocess.Popen(args=args).wait() else: - log.debug('Creating archive dir...') + log.debug('Creating archive dir %s', archive_path_full) safepath.makedirs(ctx.archive_dir, safe_archive) log.info('Running job %d', job.jid) run_job(job_config, teuth_bin_path) @@ -302,6 +302,7 @@ def run_job(job_config, teuth_bin_path): p = subprocess.Popen(args=arg) log.info("Job archive: %s", job_config['archive_path']) try: + log.debug("Worker log: %s", job_config['worker_log']) os.symlink(job_config['worker_log'], os.path.join(job_config['archive_path'], 'worker.log')) except Exception: -- 2.47.3