Skip to content

Commit

Permalink
Make the noop testing backend less verbose.
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardomurri committed May 8, 2018
1 parent 79ba0c2 commit 24aacca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gc3libs/backends/noop.py
Expand Up @@ -168,7 +168,7 @@ def update_job_state(self, app):
for prob, state in transitions.items() if prob > 0
]))
dice = random()
log.debug("Rolled dice, got %g result", dice)
#log.debug("Rolled dice, got %g result", dice)
for prob, to_state in sorted(transitions.items()):
if dice < prob:
log.debug(
Expand Down

0 comments on commit 24aacca

Please sign in to comment.