From 91aa2cea20e62fc063456546e01887eae4c020fa Mon Sep 17 00:00:00 2001 From: Shawn Kaplan Date: Wed, 27 Sep 2023 11:25:31 -0700 Subject: [PATCH] Removed glog from target group manager --- pkg/deploy/lattice/target_group_manager.go | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/pkg/deploy/lattice/target_group_manager.go b/pkg/deploy/lattice/target_group_manager.go index 6534848d..7213c8ce 100644 --- a/pkg/deploy/lattice/target_group_manager.go +++ b/pkg/deploy/lattice/target_group_manager.go @@ -4,10 +4,8 @@ import ( "context" "errors" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/golang/glog" - "github.com/aws/aws-sdk-go/aws" + "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/service/vpclattice" "fmt" @@ -306,9 +304,6 @@ func (s *defaultTargetGroupManager) List(ctx context.Context) ([]targetGroupOutp } tagsOutput, err := vpcLatticeSess.ListTagsForResourceWithContext(ctx, &tagsInput) - - glog.V(6).Infof("tagsOutput %v, err: %v", tagsOutput, err) - if err != nil { s.log.Debugf("Error listing tags for target group %s: %s", *tg.Arn, err) // setting it to nil, so the caller knows there is tag resource associated to this target group