diff --git a/pkg/scheduler/scheduler.go b/pkg/scheduler/scheduler.go index 81093295c7a..7e8b0e20fdf 100644 --- a/pkg/scheduler/scheduler.go +++ b/pkg/scheduler/scheduler.go @@ -539,7 +539,7 @@ func (sched *Scheduler) scheduleOne(ctx context.Context) { // Run PostFilter plugins to try to make the pod schedulable in a future scheduling cycle. result, status := fwk.RunPostFilterPlugins(ctx, state, pod, fitError.Diagnosis.NodeToStatusMap) if status.Code() == framework.Error { - klog.ErrorS(nil, "Status after running PostFilter plugins for pod", klog.KObj(pod), "status", status) + klog.ErrorS(nil, "Status after running PostFilter plugins for pod", "pod", klog.KObj(pod), "status", status) } else { klog.V(5).InfoS("Status after running PostFilter plugins for pod", "pod", klog.KObj(pod), "status", status) }