SteamWar/SpigotCore
Archiviert
13
0

Improve CommandFramework Exception readability
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Dieser Commit ist enthalten in:
yoyosource 2022-01-03 00:46:14 +01:00
Ursprung c0d3edd4b0
Commit 3c55c1680e

Datei anzeigen

@ -103,7 +103,7 @@ public abstract class SWCommand {
// Ignored
} catch (CommandFrameworkException e) {
if (Bukkit.getServer() != null) {
Bukkit.getLogger().log(Level.SEVERE, e.getBuildStackTrace());
Bukkit.getLogger().log(Level.SEVERE, "", e);
}
throw e;
}