Commit 3423972c authored by Stephane Nicoll's avatar Stephane Nicoll

Merge branch '1.2.x'

parents e0d34b94 676b7d71
...@@ -391,9 +391,9 @@ public class ConfigFileApplicationListener implements ...@@ -391,9 +391,9 @@ public class ConfigFileApplicationListener implements
StringBuilder msg = new StringBuilder(); StringBuilder msg = new StringBuilder();
msg.append(propertySource == null ? "Skipped " : "Loaded "); msg.append(propertySource == null ? "Skipped " : "Loaded ");
msg.append("config file "); msg.append("config file ");
msg.append("'" + location + "' "); msg.append("'").append(location).append("' ");
msg.append(StringUtils.hasLength(profile) ? "for profile " + profile : ""); msg.append(StringUtils.hasLength(profile) ? "for profile " + profile : " ");
msg.append(resource == null || !resource.exists() ? " resource not found" : ""); msg.append(resource == null || !resource.exists() ? "resource not found" : "");
this.debug.add(msg); this.debug.add(msg);
return propertySource; return propertySource;
......
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