Skip to content

Commit dbc538d

Browse files
committed
Merge branch '1.2.x'
2 parents b8106ae + c03e14b commit dbc538d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ private PropertySource<?> loadIntoGroup(String identifier, String location,
393393
msg.append("config file ");
394394
msg.append("'" + location + "' ");
395395
msg.append(StringUtils.hasLength(profile) ? "for profile " + profile : "");
396-
msg.append(resource == null || !resource.exists() ? "resource not found" : "");
396+
msg.append(resource == null || !resource.exists() ? " resource not found" : "");
397397
this.debug.add(msg);
398398

399399
return propertySource;

0 commit comments

Comments
 (0)