From c03e14bee4c5e02b3992d3d9760edabb9c7bf2c8 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 25 May 2015 18:25:11 +0200 Subject: [PATCH] Fix missing space in log message Fixes gh-3033 --- .../boot/context/config/ConfigFileApplicationListener.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigFileApplicationListener.java b/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigFileApplicationListener.java index fd17639819..a96b5b6905 100644 --- a/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigFileApplicationListener.java +++ b/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigFileApplicationListener.java @@ -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;