From 3cef8dc0e348c2cee72c333abc421fea1ad7e15a Mon Sep 17 00:00:00 2001 From: lucian929 Date: Thu, 13 Jan 2022 16:40:33 -0500 Subject: [PATCH] Switched "Loaded GUI:" logger level to INFO --- .../io/github/fisher2911/hmccosmetics/gui/CosmeticsMenu.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/java/io/github/fisher2911/hmccosmetics/gui/CosmeticsMenu.java b/src/main/java/io/github/fisher2911/hmccosmetics/gui/CosmeticsMenu.java index 37020c0f..7b5ffeef 100644 --- a/src/main/java/io/github/fisher2911/hmccosmetics/gui/CosmeticsMenu.java +++ b/src/main/java/io/github/fisher2911/hmccosmetics/gui/CosmeticsMenu.java @@ -121,12 +121,11 @@ public class CosmeticsMenu { if (id.equals(DYE_MENU)) { this.guiMap.put(id, DyeGuiSerializer.INSTANCE.deserialize(DyeSelectorGui.class, source)); - this.plugin.getLogger().severe("Loaded dye gui: " + id); + this.plugin.getLogger().info("Loaded dye gui: " + id); continue; } - this.guiMap.put(id, source.get(CosmeticGui.class)); - this.plugin.getLogger().severe("Loaded gui: " + id); + this.plugin.getLogger().info("Loaded gui: " + id); } catch (final ConfigurateException exception) { exception.printStackTrace(); }