mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 18:31:29 +01:00
cab333b217
Don't send requests of every player was found in the global api cache SpigotMC/Spigot@841270ff1e Correctly set the response code for the cached lookups and return the ... SpigotMC/Spigot@f170b7899c Don't try and re-set the global api cache on reload SpigotMC/Spigot@b410a00a66 Use a compile time sneaky throw hack. SpigotMC/Spigot@508462b96b Fix a missed rename in WorldGenGroundBush SpigotMC/Spigot@0614d8fae9
27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
From 958e9267747d6b33c67291637a556990da6dead4 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 38d7890..6a31aaa 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
|
|
|