mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
27 lines
1.1 KiB
Diff
27 lines
1.1 KiB
Diff
From 9aa16093b9bdf922f4ac04d87c5eaeb9e5fa377a Mon Sep 17 00:00:00 2001
|
|
From: md_5 <git@md-5.net>
|
|
Date: Wed, 18 Dec 2013 13:39:14 +1100
|
|
Subject: [PATCH] Log Cause of Unexpected Exceptions
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/MinecraftServer.java b/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
index d616c4f..05a63cb 100644
|
|
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
@@ -549,6 +549,12 @@ public abstract class MinecraftServer implements Runnable, ICommandListener, IAs
|
|
}
|
|
} catch (Throwable throwable) {
|
|
MinecraftServer.LOGGER.error("Encountered an unexpected exception", throwable);
|
|
+ // Spigot Start
|
|
+ if ( throwable.getCause() != null )
|
|
+ {
|
|
+ MinecraftServer.LOGGER.error( "\tCause of unexpected exception was", throwable.getCause() );
|
|
+ }
|
|
+ // Spigot End
|
|
CrashReport crashreport = null;
|
|
|
|
if (throwable instanceof ReportedException) {
|
|
--
|
|
2.5.0
|
|
|