Skip to content

Commit

Permalink
fix: remove redundant print (#1608)
Browse files Browse the repository at this point in the history
* Update dag.py

* update file for semantic PR

* Undo change for semantic PR
  • Loading branch information
Maarten-vd-Sande committed May 2, 2022
1 parent 0771062 commit cc7e0e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snakemake/dag.py
Expand Up @@ -1390,7 +1390,7 @@ def update_checkpoint_dependencies(self, jobs=None):
depending = list(self.depending[job])
# re-evaluate depending jobs, replace and update DAG
for j in depending:
logger.info("Updating job {}.".format(j))
logger.debug("Updating job {}.".format(j))
newjob = j.updated()
self.replace_job(j, newjob, recursive=False)
updated = True
Expand Down

0 comments on commit cc7e0e3

Please sign in to comment.