Browse Source

Fix missing space in log message

Fixes gh-3033
pull/3241/head
Stephane Nicoll 11 years ago
parent
commit
c03e14bee4
  1. 2
      spring-boot/src/main/java/org/springframework/boot/context/config/ConfigFileApplicationListener.java

2
spring-boot/src/main/java/org/springframework/boot/context/config/ConfigFileApplicationListener.java

@ -393,7 +393,7 @@ public class ConfigFileApplicationListener implements @@ -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;

Loading…
Cancel
Save