Skip to content

Commit

Permalink
Changed logging levels in propertySourceBootstrapConfiguration. Fixes s…
Browse files Browse the repository at this point in the history
  • Loading branch information
siddhant committed Jun 8, 2021
1 parent f1b3956 commit e9b3680
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,10 @@ public void initialize(ConfigurableApplicationContext applicationContext) {
sourceList.add(new SimpleBootstrapPropertySource(p));
}
}
logger.info("Located property source: " + sourceList);
logger.info("Located property source. Property names: " + sourceList.stream().map(
PropertySource::getName).collect(Collectors.toList()));
logger.debug("Property values: " + sourceList.stream().map(
PropertySource::getSource).collect(Collectors.toList()));
composite.addAll(sourceList);
empty = false;
}
Expand Down

0 comments on commit e9b3680

Please sign in to comment.