From e6da53b4c4eb2950893a2afc81ab3ef8903bf21d Mon Sep 17 00:00:00 2001 From: md_5 Date: Thu, 14 Mar 2013 20:52:32 +1100 Subject: [PATCH] Try harder to print debug. --- .../0006-Debug-for-Event-Exceptions.patch | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/Bukkit-Patches/0006-Debug-for-Event-Exceptions.patch b/Bukkit-Patches/0006-Debug-for-Event-Exceptions.patch index 044083452f..224dcccaed 100644 --- a/Bukkit-Patches/0006-Debug-for-Event-Exceptions.patch +++ b/Bukkit-Patches/0006-Debug-for-Event-Exceptions.patch @@ -1,17 +1,17 @@ -From 871c6282b0b5235cc498518c2adf9ff51cf6554f Mon Sep 17 00:00:00 2001 +From 4bba0780bb9442a11f80d7cb1161ced1f1179532 Mon Sep 17 00:00:00 2001 From: md_5 Date: Thu, 14 Mar 2013 20:37:25 +1100 Subject: [PATCH] Debug for Event Exceptions. --- - src/main/java/org/bukkit/plugin/java/JavaPluginLoader.java | 3 +++ - 1 file changed, 3 insertions(+) + src/main/java/org/bukkit/plugin/java/JavaPluginLoader.java | 6 ++++++ + 1 file changed, 6 insertions(+) diff --git a/src/main/java/org/bukkit/plugin/java/JavaPluginLoader.java b/src/main/java/org/bukkit/plugin/java/JavaPluginLoader.java -index 9c7288e..37b67b9 100644 +index 9c7288e..2477391 100644 --- a/src/main/java/org/bukkit/plugin/java/JavaPluginLoader.java +++ b/src/main/java/org/bukkit/plugin/java/JavaPluginLoader.java -@@ -424,6 +424,9 @@ public class JavaPluginLoader implements PluginLoader { +@@ -424,8 +424,14 @@ public class JavaPluginLoader implements PluginLoader { } method.invoke(listener, event); } catch (InvocationTargetException ex) { @@ -20,7 +20,12 @@ index 9c7288e..37b67b9 100644 + server.getLogger().warning("==== End Spigot Debug ==="); throw new EventException(ex.getCause()); } catch (Throwable t) { ++ server.getLogger().warning("==== Start Spigot Debug ==="); ++ t.printStackTrace(); ++ server.getLogger().warning("==== End Spigot Debug ==="); throw new EventException(t); + } + } -- 1.8.1-rc2