From b75894aec218a045bd91652840f07f0aecf01a73 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Wed, 26 Mar 2014 21:33:52 -0700 Subject: [PATCH] Change logging level on PropertySourcesLoader Reduce logging level to trace to remove the ugly output that appears above the banner. Fixes gh-591 --- .../org/springframework/boot/env/PropertySourcesLoader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }