Adjust log level from info to debug
Co-authored-by: rhtenhove <rhtenhove@users.noreply.github.com>
This commit is contained in:
parent
cf14b8fa92
commit
42a110dd69
1 changed files with 1 additions and 1 deletions
|
@ -245,7 +245,7 @@ func (c *ConfigurationWatcher) throttleProviderConfigReload(ctx context.Context,
|
||||||
case nextConfig := <-in:
|
case nextConfig := <-in:
|
||||||
if reflect.DeepEqual(previousConfig, nextConfig) {
|
if reflect.DeepEqual(previousConfig, nextConfig) {
|
||||||
logger := log.WithoutContext().WithField(log.ProviderName, nextConfig.ProviderName)
|
logger := log.WithoutContext().WithField(log.ProviderName, nextConfig.ProviderName)
|
||||||
logger.Info("Skipping same configuration")
|
logger.Debug("Skipping same configuration")
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
previousConfig = *nextConfig.DeepCopy()
|
previousConfig = *nextConfig.DeepCopy()
|
||||||
|
|
Loading…
Reference in a new issue