Skip to content

Commit

Permalink
chore: Info -> Debug for pricing updates (aws#4400)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellistarn authored Aug 8, 2023
1 parent 96f96ab commit 0ded815
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/providers/pricing/pricing.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down Expand Up @@ -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
}
Expand Down

0 comments on commit 0ded815

Please sign in to comment.