Skip to content

Commit

Permalink
fix: Log valuesFrom overrides with debug verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
Baarsgaard committed Jan 9, 2025
1 parent 7857561 commit d50099e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/grafanacontactpoint_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ func (r *GrafanaContactPointReconciler) buildSettings(ctx context.Context, conta
if err != nil {
return nil, fmt.Errorf("getting referenced value: %w", err)
}
r.Log.Info("overriding value", "key", override.TargetPath, "value", val)
r.Log.V(1).Info("overriding value", "key", override.TargetPath, "value", val)

simpleContent.SetPath(strings.Split(override.TargetPath, "."), val)
}
Expand Down

0 comments on commit d50099e

Please sign in to comment.