From 7ee04364f0e8c7d8484e6b9811275b9548e792ad Mon Sep 17 00:00:00 2001 From: mochizuki875 Date: Wed, 25 Jan 2023 22:42:36 +0900 Subject: [PATCH] Change log level --- internal/hncconfig/reconciler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/hncconfig/reconciler.go b/internal/hncconfig/reconciler.go index adb694097..91adc003e 100644 --- a/internal/hncconfig/reconciler.go +++ b/internal/hncconfig/reconciler.go @@ -309,7 +309,7 @@ func (r *Reconciler) syncRemovedReconcilers(ctx context.Context) error { continue } // The type does not exist in the Spec. Ignore subsequent reconciliations. - r.Log.Info("Resource config removed, will no longer update objects", "gvk", ts.GetGVK()) + r.Log.V(1).Info("Resource config removed, will no longer update objects", "gvk", ts.GetGVK()) if err := ts.SetMode(ctx, r.Log, api.Ignore); err != nil { return err // retry the reconciliation }