diff --git a/tasks/scheduler.go b/tasks/scheduler.go index ad2b57c62..adb6b336a 100644 --- a/tasks/scheduler.go +++ b/tasks/scheduler.go @@ -217,6 +217,7 @@ func (s *scheduler) shouldRerun(task *deliverTxTask) bool { // validated tasks can become unvalidated if an earlier re-run task now conflicts case statusExecuted, statusValidated: if valid, conflicts := s.findConflicts(task); !valid { + task.Ctx.Logger().Info("Task invalid", "index", task.Index, "incarnation", task.Incarnation, "conflicts", conflicts) s.invalidateTask(task) // if the conflicts are now validated, then rerun this task