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

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()