Commit b75894ae authored by Phillip Webb's avatar Phillip Webb

Change logging level on PropertySourcesLoader

Reduce logging level to trace to remove the ugly output that appears
above the banner.

Fixes gh-591
parent e7153dd6
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment