@@ -289,7 +289,7 @@ func (r *Reconciler) updateStatus(ctx context.Context, original DeclarativeObjec
289289
290290func (r * Reconciler ) reconcileExists (ctx context.Context , name types.NamespacedName , instance DeclarativeObject ) (* StatusInfo , error ) {
291291 log := log .FromContext (ctx )
292- log .WithValues ("object" , name .String ()).Info ("reconciling" )
292+ log .WithValues ("object" , name .String ()).V ( 2 ). Info ("reconciling" )
293293
294294 statusInfo := & StatusInfo {
295295 Subject : instance ,
@@ -311,7 +311,7 @@ func (r *Reconciler) reconcileExists(ctx context.Context, name types.NamespacedN
311311 log .Error (err , "flattening list objects" )
312312 return statusInfo , fmt .Errorf ("error flattening list objects: %w" , err )
313313 }
314- log .WithValues ("objects" , fmt .Sprintf ("%d" , len (objects .Items ))).Info ("built deployment objects" )
314+ log .WithValues ("objects" , fmt .Sprintf ("%d" , len (objects .Items ))).V ( 2 ). Info ("built deployment objects" )
315315 statusInfo .Manifest = objects
316316
317317 if r .options .status != nil {
@@ -680,7 +680,7 @@ func (r *Reconciler) setNamespaces(ctx context.Context, instance DeclarativeObje
680680 }
681681
682682 log := log .FromContext (ctx )
683- log .WithValues ("namespace" , ns ).Info ("setting namespace" )
683+ log .WithValues ("namespace" , ns ).V ( 2 ). Info ("setting namespace" )
684684
685685 for _ , o := range objects .Items {
686686 if o .GetNamespace () != "" {
@@ -706,7 +706,7 @@ func (r *Reconciler) injectOwnerRef(ctx context.Context, instance DeclarativeObj
706706 }
707707
708708 log := log .FromContext (ctx )
709- log .WithValues ("object" , fmt .Sprintf ("%s/%s" , instance .GetName (), instance .GetNamespace ())).Info ("injecting owner references" )
709+ log .WithValues ("object" , fmt .Sprintf ("%s/%s" , instance .GetName (), instance .GetNamespace ())).V ( 2 ). Info ("injecting owner references" )
710710
711711 for _ , o := range objects .Items {
712712 owner , err := r .options .ownerFn (ctx , instance , * o , * objects )
0 commit comments