Files
CatServer/spigot-patches/CraftBukkit-Patches/0034-Log-Cause-of-Unexpected-Exceptions.patch
T
2023-03-11 14:12:09 +08:00

27 lines
1.1 KiB
Diff

From 3718e386cf828d80b11d64f7fe633fefca73b907 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 c3153ed8d..6a4374ed9 100644
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
@@ -1027,6 +1027,12 @@ public abstract class MinecraftServer extends IAsyncTaskHandlerReentrant<TickTas
}
} 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 = constructOrExtractCrashReport(throwable);
this.fillSystemReport(crashreport.getSystemReport());
--
2.25.1