Commit c03e14be authored by Stephane Nicoll's avatar Stephane Nicoll

Fix missing space in log message

Fixes gh-3033
parent dbe310b8
......@@ -393,7 +393,7 @@ public class ConfigFileApplicationListener implements
msg.append("config file ");
msg.append("'" + location + "' ");
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);
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