From a1e3a5a86181a479bab45349811a65429cc22c22 Mon Sep 17 00:00:00 2001 From: Josh Thornhill Date: Sat, 20 Jun 2015 20:27:54 -0400 Subject: [PATCH] Fix missing space in logging message Closes gh-3298 --- .../boot/context/config/ConfigFileApplicationListener.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 0fdb02b484..a1a2f5e797 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 @@ -1,5 +1,5 @@ /* - * Copyright 2010-2014 the original author or authors. + * Copyright 2012-2015 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -392,7 +392,7 @@ public class ConfigFileApplicationListener implements msg.append("config file "); msg.append("'").append(location).append("'"); if (StringUtils.hasLength(profile)) { - msg.append(" for profile" + profile); + msg.append(" for profile ").append(profile); } if (resource == null || !resource.exists()) { msg.append(" resource not found");