From 9453e41a05d3513b2b75561b80e4e65462d6adc1 Mon Sep 17 00:00:00 2001 From: Chaos Date: Fri, 7 Jan 2022 22:42:20 +0100 Subject: [PATCH] Remove Schematic Load Logging --- .../schematicsystem/commands/SchematicCommandUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/SchematicCommandUtils.java b/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/SchematicCommandUtils.java index cacbd02..469f178 100644 --- a/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/SchematicCommandUtils.java +++ b/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/SchematicCommandUtils.java @@ -309,7 +309,7 @@ public class SchematicCommandUtils { player.sendMessage(SchematicSystem.PREFIX + "§cEs konnte keine Daten in der Schematic gefunden werden."); } catch (Exception e) { player.sendMessage(SchematicSystem.PREFIX + "§cDie Schematic konnte nicht geladen werden."); - throw new SecurityException(e); + Bukkit.getLogger().log(Level.INFO, e.getMessage(), e); } }