Skip to content

Commit

Permalink
Bumped debug logging to error logging for unsupported pods (#1423)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellistarn committed Feb 26, 2022
1 parent 6d5d976 commit dab220d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controllers/selection/controller.go
Expand Up @@ -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
Expand Down

0 comments on commit dab220d

Please sign in to comment.