From: Zack Cerza Date: Mon, 27 Jan 2014 18:28:53 +0000 (-0600) Subject: Be more verbose about log file locations X-Git-Tag: 1.1.0~1688 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e424d78c6b94a8268b51b86acf7a37f8ae51280a;p=teuthology.git Be more verbose about log file locations Signed-off-by: Zack Cerza --- diff --git a/teuthology/queue.py b/teuthology/queue.py index a0e16be3b..9a3e6f5a8 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: