From dab220d31e188bc73241f9d304beb6113c1a4d03 Mon Sep 17 00:00:00 2001 From: Ellis Tarn Date: Sat, 26 Feb 2022 10:23:37 -0800 Subject: [PATCH] Bumped debug logging to error logging for unsupported pods (#1423) --- pkg/controllers/selection/controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/controllers/selection/controller.go b/pkg/controllers/selection/controller.go index cbacca78409c..971d82c85678 100644 --- a/pkg/controllers/selection/controller.go +++ b/pkg/controllers/selection/controller.go @@ -71,7 +71,7 @@ func (c *Controller) Reconcile(ctx context.Context, req reconcile.Request) (reco return reconcile.Result{}, nil } if err := validate(pod); err != nil { - logging.FromContext(ctx).Debugf("Ignoring pod, %s", err) + logging.FromContext(ctx).Errorf("Ignoring pod, %s", err) return reconcile.Result{}, nil } // Select a provisioner, wait for it to bind the pod, and verify scheduling succeeded in the next loop