From 3c70aa645dc347b654188052b20177406c6387bd Mon Sep 17 00:00:00 2001 From: Marxel-cn <69199776+Marxel-cn@users.noreply.github.com> Date: Wed, 5 Aug 2020 19:54:02 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=86Apollo=E9=85=8D=E7=BD=AE=E6=97=A0?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=97=B6=E7=9A=84=E6=8F=90=E7=A4=BA=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E9=99=8D=E7=BA=A7=E4=B8=BAdebug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将Apollo配置无更新时的提示信息降级为debug --- protocol/http/request.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol/http/request.go b/protocol/http/request.go index 3dff4575..b058ed91 100644 --- a/protocol/http/request.go +++ b/protocol/http/request.go @@ -125,7 +125,7 @@ func Request(requestURL string, connectionConfig *env.ConnectConfig, callBack *C } return nil, nil case http.StatusNotModified: - log.Info("Config Not Modified:", err) + log.Debug("Config Not Modified:", err) if callBack != nil && callBack.NotModifyCallBack != nil { return nil, callBack.NotModifyCallBack() }