Skip to content

Commit

Permalink
Merge pull request #1376 from XzzX/warn_if_job_was_not_deleted
Browse files Browse the repository at this point in the history
warn if job could not be deleted
  • Loading branch information
jan-janssen authored Mar 19, 2024
2 parents b749abb + 8d4a965 commit cd31175
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyiron_base/project/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1782,7 +1782,7 @@ def _remove_jobs_helper(self, recursive=False, progress=True):
self.remove_job(job_specifier=job_id)
state.logger.debug("Remove job with ID {0} ".format(job_id))
except (IndexError, Exception):
state.logger.debug("Could not remove job with ID {0} ".format(job_id))
state.logger.warning("Could not remove job with ID {0} ".format(job_id))

def _remove_files(self, pattern="*"):
"""
Expand Down

0 comments on commit cd31175

Please sign in to comment.