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(",");