Adjust log level from info to debug

Co-authored-by: rhtenhove <rhtenhove@users.noreply.github.com>
This commit is contained in:
Tom Moulard 2022-01-20 12:36:08 +01:00 committed by GitHub
parent cf14b8fa92
commit 42a110dd69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -245,7 +245,7 @@ func (c *ConfigurationWatcher) throttleProviderConfigReload(ctx context.Context,
case nextConfig := <-in:
if reflect.DeepEqual(previousConfig, nextConfig) {
logger := log.WithoutContext().WithField(log.ProviderName, nextConfig.ProviderName)
logger.Info("Skipping same configuration")
logger.Debug("Skipping same configuration")
continue
}
previousConfig = *nextConfig.DeepCopy()