From e911a5593d0b695f757771620b4e1c928270f5d3 Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 18 May 2019 16:06:00 -0700 Subject: [PATCH] Removed stacktrace output --- .../java/world/bentobox/bentobox/schems/SchemToBlueprint.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/world/bentobox/bentobox/schems/SchemToBlueprint.java b/src/main/java/world/bentobox/bentobox/schems/SchemToBlueprint.java index 77f8f184b..0a8dd6465 100644 --- a/src/main/java/world/bentobox/bentobox/schems/SchemToBlueprint.java +++ b/src/main/java/world/bentobox/bentobox/schems/SchemToBlueprint.java @@ -120,8 +120,7 @@ public class SchemToBlueprint { } catch (FileNotFoundException ignore) { // Ignore } catch (Exception e) { - plugin.logError("Could not convert " + name + " schem, skipping!"); - e.printStackTrace(); + plugin.logError("Could not convert " + name + " schem, skipping! " + e.getLocalizedMessage()); } return null; }