From 23997a3c8f60d1e5b11596c626ce51c1fd582d5c Mon Sep 17 00:00:00 2001 From: Richard Chen Date: Tue, 11 Jun 2024 07:18:40 +0800 Subject: [PATCH] Treat get settings from one client failure as warning --- 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 063a2bc..7146801 100644 --- a/internal/loader/configuration_setting_loader.go +++ b/internal/loader/configuration_setting_loader.go @@ -463,7 +463,7 @@ func (csl *ConfigurationSettingLoader) ExecuteFailoverPolicy(ctx context.Context successful = false updateClientBackoffStatus(clientWrapper, successful) if IsFailoverable(err) { - klog.V(3).Info("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 }