From 557da6de88d9dc867b4c3eee8e3640d49ed0ae05 Mon Sep 17 00:00:00 2001 From: whalecold Date: Wed, 1 Nov 2023 14:49:05 +0800 Subject: [PATCH] use Warn log level --- nacos/nacos.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nacos/nacos.go b/nacos/nacos.go index d9b5e7d..44d4941 100644 --- a/nacos/nacos.go +++ b/nacos/nacos.go @@ -273,7 +273,7 @@ func (c *client) RegisterConfigCallback(param vo.ConfigParam, if err != nil { // If the initial connection fails and the reconnection is successful, the callback handler can also be invoked. // Ignore the error here and print the error info. - klog.Errorf("get config %v from nacos failed %v", param, err) + klog.Warnf("get config %v from nacos failed %v", param, err) } callback(data, c.parser)