mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 10:49:40 +01:00
7b0c576798
Allows us much greater control over the Spigot portion of the code and makes us more "proper" Credit to @Dmck2b for originally passing the idea along a while back
27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
From 55448475919982a16da1ab626234f920ec1687cc 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 b0157b2..ee74b03 100644
|
|
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
@@ -479,6 +479,12 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
|
|
}
|
|
} catch (Throwable throwable) {
|
|
i.error("Encountered an unexpected exception", throwable);
|
|
+ // Spigot Start
|
|
+ if ( throwable.getCause() != null )
|
|
+ {
|
|
+ i.error( "\tCause of unexpected exception was", throwable.getCause() );
|
|
+ }
|
|
+ // Spigot End
|
|
CrashReport crashreport = null;
|
|
|
|
if (throwable instanceof ReportedException) {
|
|
--
|
|
1.9.1
|
|
|