From 9cb2a09680c9fabf955fd4ad3538012bb5b9c7ac Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 8 Jul 2015 22:04:11 +0100 Subject: [PATCH] Reinstate output of stack trace accidentally removed in 66d4a2a --- .../springframework/boot/logging/LoggingApplicationListener.java | 1 + 1 file changed, 1 insertion(+) 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 ba80ce09af..9c67a3debd 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 @@ -214,6 +214,7 @@ public class LoggingApplicationListener implements GenericApplicationListener { // NOTE: We can't use the logger here to report the problem System.err.println("Logging system failed to initialize " + "using configuration from '" + logConfig + "'"); + ex.printStackTrace(System.err); throw new IllegalStateException(ex); } }