mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 10:49:40 +01:00
27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
From e637ee8322d20cde14d424d1440bfbc17bde7ef8 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 41a690b..9970208 100644
|
|
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
@@ -469,6 +469,12 @@ public abstract class MinecraftServer implements ICommandListener, Runnable, IMo
|
|
}
|
|
} catch (Throwable throwable) {
|
|
h.error("Encountered an unexpected exception", throwable);
|
|
+ // Spigot Start
|
|
+ if ( throwable.getCause() != null )
|
|
+ {
|
|
+ h.error( "\tCause of unexpected exception was", throwable.getCause() );
|
|
+ }
|
|
+ // Spigot End
|
|
CrashReport crashreport = null;
|
|
|
|
if (throwable instanceof ReportedException) {
|
|
--
|
|
1.8.5.2.msysgit.0
|
|
|