From 46792750e7e1a08142b8996fc80ce76a0af34963 Mon Sep 17 00:00:00 2001 From: Keith Wall Date: Fri, 10 Jan 2014 08:32:01 +0000 Subject: QPID-5429: [Java Broker] Exceptions causing startup failure now written to qpid.log too Previously, such exceptions were only written to stderr. This change means that they written to qpid.log too, allowing configuration problems etc to be understood by refering to the one file. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1557052 13f79535-47bb-0310-9956-ffa450edef68 --- java/broker-core/src/main/java/org/apache/qpid/server/Broker.java | 1 + 1 file changed, 1 insertion(+) (limited to 'java') diff --git a/java/broker-core/src/main/java/org/apache/qpid/server/Broker.java b/java/broker-core/src/main/java/org/apache/qpid/server/Broker.java index e67f2feb70..f180e4532c 100644 --- a/java/broker-core/src/main/java/org/apache/qpid/server/Broker.java +++ b/java/broker-core/src/main/java/org/apache/qpid/server/Broker.java @@ -123,6 +123,7 @@ public class Broker } catch(Exception e) { + LOGGER.fatal("Exception during startup", e); try { _applicationRegistry.close(); -- cgit v1.2.1