From 963cd5438a2b2f779b9e81cc7edd6357b5231463 Mon Sep 17 00:00:00 2001 From: Travis Watkins Date: Mon, 2 Dec 2013 15:43:55 -0600 Subject: Catch all exceptions in jansi initialization. Fixes BUKKIT-4936 Both log4j and our own jline/jansi initialization attempt to catch errors caused by jansi's use of native libraries. However both of them use the Exception type which does not catch all errors. On Windows Server 2008 R2 Enterprise without installing extra software the required C++ libraries are not available which causes an error that does not extend Exception. To ensure we catch all errors I've changed both of these to catch Throwable instead which gets us a working console minus jansi functionality. --- .../java/org/apache/logging/log4j/core/appender/ConsoleAppender.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/org/apache/logging') diff --git a/src/main/java/org/apache/logging/log4j/core/appender/ConsoleAppender.java b/src/main/java/org/apache/logging/log4j/core/appender/ConsoleAppender.java index 5629e0b1..341eaa33 100644 --- a/src/main/java/org/apache/logging/log4j/core/appender/ConsoleAppender.java +++ b/src/main/java/org/apache/logging/log4j/core/appender/ConsoleAppender.java @@ -130,7 +130,7 @@ public final class ConsoleAppender extends AbstractOutputStreamAppender { LOGGER.debug("Jansi is not installed, cannot find {}", JANSI_CLASS); } catch (final NoSuchMethodException nsme) { LOGGER.warn("{} is missing the proper constructor", JANSI_CLASS); - } catch (final Exception ex) { + } catch (final Throwable ex) { // CraftBukkit - Exception -> Throwable LOGGER.warn("Unable to instantiate {}", JANSI_CLASS); } return printStream; -- cgit v1.2.3