diff --git a/spring-cloud-core/src/main/java/org/springframework/cloud/Cloud.java b/spring-cloud-core/src/main/java/org/springframework/cloud/Cloud.java index 26cbe6b..05412a5 100644 --- a/spring-cloud-core/src/main/java/org/springframework/cloud/Cloud.java +++ b/spring-cloud-core/src/main/java/org/springframework/cloud/Cloud.java @@ -359,7 +359,7 @@ class ServiceConnectorCreatorRegistry { private ServiceConnectorCreator getServiceCreatorOrNull(Class serviceConnectorType, SI serviceInfo) { for (ServiceConnectorCreator serviceConnectorCreator : serviceConnectorCreators) { - logger.info("Trying connector creator type " + serviceConnectorCreator); + logger.fine("Trying connector creator type " + serviceConnectorCreator); if (accept(serviceConnectorCreator, serviceConnectorType, serviceInfo)) { return (ServiceConnectorCreator) serviceConnectorCreator; }