From be25f2f4fc54a7b3199663ebe27b45f616fb5ca7 Mon Sep 17 00:00:00 2001 From: Auxilor Date: Mon, 25 Apr 2022 09:42:03 +0100 Subject: [PATCH] Added startup message in constructor --- eco-api/src/main/java/com/willfp/eco/core/EcoPlugin.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eco-api/src/main/java/com/willfp/eco/core/EcoPlugin.java b/eco-api/src/main/java/com/willfp/eco/core/EcoPlugin.java index 2aa66d23..059a068f 100644 --- a/eco-api/src/main/java/com/willfp/eco/core/EcoPlugin.java +++ b/eco-api/src/main/java/com/willfp/eco/core/EcoPlugin.java @@ -319,6 +319,8 @@ public abstract class EcoPlugin extends JavaPlugin implements PluginLike { Eco.getHandler().addNewPlugin(this); + this.getLogger().info("Initializing " + this.getColor() + this.getName()); + /* The minimum eco version check was moved here because it's very common to add a lot of code in the constructor of plugins; meaning that the plugin