summaryrefslogtreecommitdiffstats
path: root/EssentialsGeoIP
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2012-01-20 05:52:35 +0100
committersnowleo <schneeleo@gmail.com>2012-01-20 05:52:35 +0100
commita44c6d51f72a8606a2fde4c0b39dd0ced3cd1285 (patch)
tree0b5485f59184bedce6dc85b1ba8a2bcdb2858174 /EssentialsGeoIP
parent49318ba78f55e9426b9690469078c9ad1b0ba133 (diff)
downloadEssentials-a44c6d51f72a8606a2fde4c0b39dd0ced3cd1285.tar
Essentials-a44c6d51f72a8606a2fde4c0b39dd0ced3cd1285.tar.gz
Essentials-a44c6d51f72a8606a2fde4c0b39dd0ced3cd1285.tar.lz
Essentials-a44c6d51f72a8606a2fde4c0b39dd0ced3cd1285.tar.xz
Essentials-a44c6d51f72a8606a2fde4c0b39dd0ced3cd1285.zip
Removing load info, bucket displays that now.
Diffstat (limited to 'EssentialsGeoIP')
-rw-r--r--EssentialsGeoIP/src/com/earth2me/essentials/geoip/EssentialsGeoIP.java10
1 files changed, 2 insertions, 8 deletions
diff --git a/EssentialsGeoIP/src/com/earth2me/essentials/geoip/EssentialsGeoIP.java b/EssentialsGeoIP/src/com/earth2me/essentials/geoip/EssentialsGeoIP.java
index 5700a7472..eb401c6db 100644
--- a/EssentialsGeoIP/src/com/earth2me/essentials/geoip/EssentialsGeoIP.java
+++ b/EssentialsGeoIP/src/com/earth2me/essentials/geoip/EssentialsGeoIP.java
@@ -3,17 +3,12 @@ package com.earth2me.essentials.geoip;
import static com.earth2me.essentials.I18n._;
import com.earth2me.essentials.IEssentials;
import java.util.logging.Level;
-import java.util.logging.Logger;
-import org.bukkit.event.Event.Priority;
-import org.bukkit.event.Event.Type;
import org.bukkit.plugin.PluginManager;
import org.bukkit.plugin.java.JavaPlugin;
public class EssentialsGeoIP extends JavaPlugin
{
- private static final Logger logger = Logger.getLogger("Minecraft");
-
public EssentialsGeoIP()
{
}
@@ -30,7 +25,7 @@ public class EssentialsGeoIP extends JavaPlugin
final IEssentials ess = (IEssentials)pm.getPlugin("Essentials");
if (!this.getDescription().getVersion().equals(ess.getDescription().getVersion()))
{
- logger.log(Level.WARNING, _("versionMismatchAll"));
+ getLogger().log(Level.WARNING, _("versionMismatchAll"));
}
if (!ess.isEnabled()) {
this.setEnabled(false);
@@ -39,8 +34,7 @@ public class EssentialsGeoIP extends JavaPlugin
final EssentialsGeoIPPlayerListener playerListener = new EssentialsGeoIPPlayerListener(getDataFolder(), ess);
pm.registerEvents(playerListener, this);
- logger.info(_("loadinfo", this.getDescription().getName(), this.getDescription().getVersion(), "essentials team"));
- logger.log(Level.INFO, "This product includes GeoLite data created by MaxMind, available from http://www.maxmind.com/.");
+ getLogger().log(Level.INFO, "This product includes GeoLite data created by MaxMind, available from http://www.maxmind.com/.");
}
}