From 0e5b3d4b0f0471b6721755b6cf1b40c3fd78bb00 Mon Sep 17 00:00:00 2001 From: michaeljguarino Date: Thu, 9 May 2024 09:27:29 -0400 Subject: [PATCH] rm unnecessary print --- internal/controller/constraint_controller.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/controller/constraint_controller.go b/internal/controller/constraint_controller.go index 9fb428a8..810d73aa 100644 --- a/internal/controller/constraint_controller.go +++ b/internal/controller/constraint_controller.go @@ -120,7 +120,6 @@ func GenerateAPIConstraint(instance *unstructured.Unstructured, template *templa if annotations := instance.GetAnnotations(); annotations != nil { var bundleData BundleData if d, ok := annotations[bundleDataAnnotation]; ok { - fmt.Printf("found bundle data: %s\n", d) if err := yaml.Unmarshal([]byte(d), &bundleData); err != nil { pca.Description = lo.ToPtr(bundleData.Description) pca.Recommendation = lo.ToPtr(bundleData.Remediation)