Fix String.format call in PropertiesConfigurationFactory

Closes gh-5921
pull/5936/head
Andy Wilkinson 9 years ago
parent 221e4e8bbd
commit 508905884a

@ -231,7 +231,7 @@ public class PropertiesConfigurationFactory<T>
try {
if (this.logger.isTraceEnabled()) {
if (this.properties != null) {
this.logger.trace(String.format("Properties:%n%s" + this.properties));
this.logger.trace(String.format("Properties:%n%s", this.properties));
}
else {
this.logger.trace("Property Sources: " + this.propertySources);

Loading…
Cancel
Save