9
0
mirror of https://github.com/HibiscusMC/HMCCosmetics.git synced 2025-12-28 19:39:14 +00:00

Switched "Loaded GUI:" logger level to INFO

This commit is contained in:
lucian929
2022-01-13 16:40:33 -05:00
parent b054207012
commit 3cef8dc0e3

View File

@@ -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();
}