From c31ef110113d2f2e482d7b9cb4ffff442f9c1ceb Mon Sep 17 00:00:00 2001 From: Richard chen <99175581+RichardChen820@users.noreply.github.com> Date: Tue, 18 Jun 2024 00:47:04 -0700 Subject: [PATCH] Treat get settings from one client failure as warning (#48) --- internal/loader/configuration_setting_loader.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/loader/configuration_setting_loader.go b/internal/loader/configuration_setting_loader.go index e09443a..dbb7f7f 100644 --- a/internal/loader/configuration_setting_loader.go +++ b/internal/loader/configuration_setting_loader.go @@ -468,7 +468,7 @@ func (csl *ConfigurationSettingLoader) ExecuteFailoverPolicy(ctx context.Context successful = false updateClientBackoffStatus(clientWrapper, successful) if IsFailoverable(err) { - klog.V(3).Infof("current client of '%s' failed to get settings: %s", clientWrapper.Endpoint, err.Error()) + klog.Warningf("current client of '%s' failed to get settings: %s", clientWrapper.Endpoint, err.Error()) errors = append(errors, err) continue }