Skip to content

Commit

Permalink
fix(collectors): uniform log level for partialOblectMetadata
Browse files Browse the repository at this point in the history
Signed-off-by: Aldo Lacuku <[email protected]>
  • Loading branch information
alacuku authored and poiana committed Dec 5, 2023
1 parent f91c0d1 commit 982c40a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion collectors/partialObjectMetadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func (r *ObjectMetaCollector) Reconcile(ctx context.Context, req ctrl.Request) (
if k8sApiErrors.IsNotFound(err) {
// When the k8s resource gets deleted we need to remove it from the local cache.
if r.cache.Has(req.String()) {
logger.Info("marking resource for deletion")
logger.V(3).Info("marking resource for deletion")
deleted = true
} else {
return ctrl.Result{}, nil
Expand Down

0 comments on commit 982c40a

Please sign in to comment.