From 6d9a063cdd96378560f59e886f6c94beb717ee0e Mon Sep 17 00:00:00 2001 From: Lonre Wang Date: Wed, 11 Aug 2021 00:12:15 +0800 Subject: [PATCH] switch to info level --- CHANGES.md | 1 + .../ctrip/framework/apollo/internals/ConfigServiceLocator.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index e5265f55301..c6f1dcbf07a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -74,6 +74,7 @@ Apollo 1.9.0 * [Fix Multiple PropertySourcesPlaceholderConfigurer beans registered issue](https://github.com/ctripcorp/apollo/pull/3865) * [use jdk 8 to publish apollo-client-config-data](https://github.com/ctripcorp/apollo/pull/3880) * [fix apollo config data loader with profiles](https://github.com/ctripcorp/apollo/pull/3870) +* [switch to info level](https://github.com/ctripcorp/apollo/pull/3884) ------------------ All issues and pull requests are [here](https://github.com/ctripcorp/apollo/milestone/6?closed=1) diff --git a/apollo-client/src/main/java/com/ctrip/framework/apollo/internals/ConfigServiceLocator.java b/apollo-client/src/main/java/com/ctrip/framework/apollo/internals/ConfigServiceLocator.java index ac165f1c0c5..aab3d3c679b 100644 --- a/apollo-client/src/main/java/com/ctrip/framework/apollo/internals/ConfigServiceLocator.java +++ b/apollo-client/src/main/java/com/ctrip/framework/apollo/internals/ConfigServiceLocator.java @@ -109,7 +109,7 @@ private List getCustomizedConfigService() { return null; } - logger.warn("Located config services from apollo.config-service configuration: {}, will not refresh config services from remote meta service!", configServices); + logger.info("Located config services from apollo.config-service configuration: {}, will not refresh config services from remote meta service!", configServices); // mock service dto list String[] configServiceUrls = configServices.split(",");