diff --git a/spring-boot-dependencies/pom.xml b/spring-boot-dependencies/pom.xml
index 3949f3ccf6..d02a59123d 100644
--- a/spring-boot-dependencies/pom.xml
+++ b/spring-boot-dependencies/pom.xml
@@ -82,6 +82,7 @@
2.0.5
2.3
1.2.2
+ 0.9.1
1.2
4.11
3.0.8
@@ -405,6 +406,11 @@
h2
${h2.version}
+
+ com.jayway.jsonpath
+ json-path
+ ${json-path.version}
+
com.zaxxer
HikariCP
diff --git a/spring-boot/src/main/java/org/springframework/boot/logging/LoggingApplicationListener.java b/spring-boot/src/main/java/org/springframework/boot/logging/LoggingApplicationListener.java
index 8f6ad83167..d7806c0649 100644
--- a/spring-boot/src/main/java/org/springframework/boot/logging/LoggingApplicationListener.java
+++ b/spring-boot/src/main/java/org/springframework/boot/logging/LoggingApplicationListener.java
@@ -185,10 +185,9 @@ public class LoggingApplicationListener implements SmartApplicationListener {
system.initialize(value);
}
catch (Exception ex) {
- // Swallow exception and continue
+ this.logger.warn("Logging environment value '" + value
+ + "' cannot be opened and will be ignored");
}
- this.logger.warn("Logging environment value '" + value
- + "' cannot be opened and will be ignored");
}
else {