diff --git a/workflow/controller/operator.go b/workflow/controller/operator.go index bc86b71da857..b739fbd9e0ad 100644 --- a/workflow/controller/operator.go +++ b/workflow/controller/operator.go @@ -1496,11 +1496,11 @@ func (woc *wfOperationCtx) assessNodeStatus(ctx context.Context, pod *apiv1.Pod, WithField("new.message", new.Message). WithField("old.progress", old.Progress). WithField("new.progress", new.Progress). - Info("node changed") + Debug("node changed") return new } woc.log.WithField("nodeID", old.ID). - Info("node unchanged") + Debug("node unchanged") return nil } diff --git a/workflow/controller/taskresult.go b/workflow/controller/taskresult.go index d6c003d0b51a..49995a9e6baf 100644 --- a/workflow/controller/taskresult.go +++ b/workflow/controller/taskresult.go @@ -114,7 +114,7 @@ func (woc *wfOperationCtx) taskResultReconciliation() { if !reflect.DeepEqual(old, newNode) { woc.log. WithField("nodeID", nodeID). - Info("task-result changed") + Debug("task-result changed") woc.wf.Status.Nodes.Set(nodeID, *newNode) woc.updated = true }