diff --git a/app/tasks.py b/app/tasks.py index 10b873c250e4375b336eb6911edbfd855950957b..a0b00d7ee3f9dce7257688d709fe63d2a203eb78 100644 --- a/app/tasks.py +++ b/app/tasks.py @@ -55,7 +55,10 @@ class TaskWorker(Worker): self.log.warning("task not found...") time.sleep(1) else: - self.log.error(f"Task {job.id} not found! Task attribute not updated!") + self.log.error( + f"Task {job.id} not found for job: {job.get_call_string()}!" + " Task attribute not updated!" + ) return for name, value in attributes.items(): setattr(task, name, value)