diff --git a/spring-boot/src/main/java/org/springframework/boot/env/PropertySourcesLoader.java b/spring-boot/src/main/java/org/springframework/boot/env/PropertySourcesLoader.java index 4aa2a34c0b..ac249e444f 100644 --- a/spring-boot/src/main/java/org/springframework/boot/env/PropertySourcesLoader.java +++ b/spring-boot/src/main/java/org/springframework/boot/env/PropertySourcesLoader.java @@ -168,7 +168,7 @@ public class PropertySourcesLoader { EnumerableCompositePropertySource group = getGeneric(basename); group.add(source); - logger.info("Adding PropertySource: " + source + " in group: " + basename); + logger.trace("Adding PropertySource: " + source + " in group: " + basename); if (this.propertySources.contains(group.getName())) { this.propertySources.replace(group.getName(), group); }