Fix missing space in log message

Fixes gh-3033
This commit is contained in:
Stephane Nicoll 2015-05-25 18:25:11 +02:00
parent dbe310b806
commit c03e14bee4
1 changed files with 1 additions and 1 deletions

View File

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