Fix String.format call in PropertiesConfigurationFactory

Closes gh-5921
This commit is contained in:
Andy Wilkinson 2016-05-12 16:43:50 +01:00
parent 221e4e8bbd
commit 508905884a
1 changed files with 1 additions and 1 deletions

View File

@ -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);