Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
Merge pull request #2591 from golemfactory/log_for_removed_task
Browse files Browse the repository at this point in the history
Decrease severity of log for receiving info about finished tasks
  • Loading branch information
mfranciszkiewicz authored Apr 7, 2018
2 parents 1e860da + a65dd37 commit 1dda28b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions golem/task/taskkeeper.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,9 +442,9 @@ def add_task_header(self, th_dict_repr):
self.check_correct(th_dict_repr)

if id_ in list(self.removed_tasks.keys()): # recent
logger.info("Received a task which has been already "
"cancelled/removed/timeout/banned/etc "
"Task id %s .", id_)
logger.debug("Received a task which has been already "
"cancelled/removed/timeout/banned/etc "
"Task id %s .", id_)
return True

th = TaskHeader.from_dict(th_dict_repr)
Expand Down

0 comments on commit 1dda28b

Please sign in to comment.