Skip to content

Commit cde1484

Browse files
porridgemtesseractjoelanford
authored
Fix reconciler log format message (#25) (#427)
* Fix reconciler log format message. Fix log format string interpolation * Review suggestion. Co-authored-by: Joe Lanford <joe.lanford@gmail.com> --------- Co-authored-by: Moritz Clasmeier <mtesseract@users.noreply.github.com> Co-authored-by: Joe Lanford <joe.lanford@gmail.com>
1 parent 3360f76 commit cde1484

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/reconciler/reconciler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ func (r *Reconciler) Reconcile(ctx context.Context, req ctrl.Request) (_ ctrl.Re
564564
obj.SetGroupVersionKind(*r.gvk)
565565
err = r.client.Get(ctx, req.NamespacedName, obj)
566566
if apierrors.IsNotFound(err) {
567-
log.V(1).Info("Resource %s/%s not found, nothing to do", req.NamespacedName.Namespace, req.NamespacedName.Name)
567+
log.V(1).Info("Resource not found, nothing to do")
568568
return ctrl.Result{}, nil
569569
}
570570
if err != nil {

0 commit comments

Comments
 (0)