From 4f54f2f9c5419b484833f4bd53fcf335cffb4aa9 Mon Sep 17 00:00:00 2001 From: Shansen Date: Thu, 28 Feb 2013 20:34:13 +0100 Subject: [PATCH] Removed redundant enable/disable messages --- src/main/java/me/shansen/EggCatcher/EggCatcher.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main/java/me/shansen/EggCatcher/EggCatcher.java b/src/main/java/me/shansen/EggCatcher/EggCatcher.java index a13b695..a98c6e9 100644 --- a/src/main/java/me/shansen/EggCatcher/EggCatcher.java +++ b/src/main/java/me/shansen/EggCatcher/EggCatcher.java @@ -36,22 +36,18 @@ import java.io.IOException; import java.net.URL; import java.util.ArrayList; import java.util.List; -import java.util.logging.Logger; public class EggCatcher extends JavaPlugin { public static List eggs = new ArrayList(); public static Economy economy = null; - Logger log = Logger.getLogger("Minecraft"); public void onDisable() { - log.info(this.getDescription().getName() + " v" + this.getDescription().getVersion() + " is disabled!"); } public void onEnable() { this.CheckUpdate(); this.CheckConfigurationFile(); PluginManager pm = this.getServer().getPluginManager(); - log.info(this.getDescription().getName() + " v" + this.getDescription().getVersion() + " is enabled!"); final EggCatcherPlayerListener playerListener = new EggCatcherPlayerListener(); final EggCatcherEntityListener entityListener = new EggCatcherEntityListener(this);