Skip to content

Commit

Permalink
Changed noisy log to debugf instead of infof
Browse files Browse the repository at this point in the history
  • Loading branch information
bt353 committed Dec 1, 2023
1 parent b0eb4bb commit ee2d799
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloudfront/distribution.go
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ func (c *CloudFront) ListTags(ctx context.Context, arn string) ([]*cloudfront.Ta
return nil, apierror.New(apierror.ErrBadRequest, "invalid input", nil)
}

log.Infof("listing tags for cloudfront resource %s", arn)
log.Debugf("listing tags for cloudfront resource %s", arn)

out, err := c.Service.ListTagsForResourceWithContext(ctx, &cloudfront.ListTagsForResourceInput{Resource: aws.String(arn)})
if err != nil {
Expand Down

0 comments on commit ee2d799

Please sign in to comment.