From 0ded8158f849e88dd752b961c6ba9569cfd6ea84 Mon Sep 17 00:00:00 2001 From: Ellis Tarn Date: Tue, 8 Aug 2023 11:25:08 -0700 Subject: [PATCH] chore: Info -> Debug for pricing updates (#4400) --- pkg/providers/pricing/pricing.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/providers/pricing/pricing.go b/pkg/providers/pricing/pricing.go index 8d509bc2d611..83669fb90fdf 100644 --- a/pkg/providers/pricing/pricing.go +++ b/pkg/providers/pricing/pricing.go @@ -219,7 +219,7 @@ func (p *Provider) UpdateOnDemandPricing(ctx context.Context) error { }).Set(price) } if p.cm.HasChanged("on-demand-prices", p.onDemandPrices) { - logging.FromContext(ctx).With("instance-type-count", len(p.onDemandPrices)).Infof("updated on-demand pricing") + logging.FromContext(ctx).With("instance-type-count", len(p.onDemandPrices)).Debugf("updated on-demand pricing") } return nil } @@ -379,7 +379,7 @@ func (p *Provider) UpdateSpotPricing(ctx context.Context) error { if p.cm.HasChanged("spot-prices", p.spotPrices) { logging.FromContext(ctx).With( "instance-type-count", len(p.onDemandPrices), - "offering-count", totalOfferings).Infof("updated spot pricing with instance types and offerings") + "offering-count", totalOfferings).Debugf("updated spot pricing with instance types and offerings") } return nil }