Skip to content

Commit

Permalink
reduced printout
Browse files Browse the repository at this point in the history
  • Loading branch information
Heerpa committed Jul 23, 2024
1 parent f833eb9 commit c5a0ea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion picasso_workflow/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ def module_previously_succeeded(self, i, module_name):
"""
module_id = f"{i:02d}_{module_name}"
logger.debug("looking for previous " + module_id)
logger.debug(str(self.results.get(module_id, {})))
# logger.debug(str(self.results.get(module_id, {})))
logger.debug(
str(self.results.get(module_id, {}).get("success", False))
)
Expand Down

0 comments on commit c5a0ea8

Please sign in to comment.