Skip to content
Snippets Groups Projects
Commit 607f736b authored by Ian's avatar Ian
Browse files

fix: update log message to reference unsuccessful_jobs.json path

parent b65e2ef9
No related branches found
No related tags found
No related merge requests found
......@@ -234,8 +234,8 @@ class JobManager:
unsuccessful_jobs = set(self.ledger.get_jobs()) - successful_jobs
# Write ids, final state, and kwargs of unsuccessful jobs to log
logging.info(f"See full log in {self.output_dir} for details"
"on unsuccessful jobs.")
logging.info(f"See unsuccessful_jobs.json in {self.output_dir}"
"for details on unsuccessful jobs.")
for job in unsuccessful_jobs:
logging.debug(f"\nFailed job ID: {job.job_id}")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment