mirror of
https://github.com/essentials/Essentials.git
synced 2025-08-12 17:45:08 +02:00
More logging!
This commit is contained in:
@@ -10,7 +10,6 @@ import org.bukkit.plugin.Plugin;
|
||||
|
||||
public class EssentialsConnect
|
||||
{
|
||||
private static final Logger LOGGER = Logger.getLogger("Minecraft");
|
||||
private final IEssentials ess;
|
||||
private final IProtect protect;
|
||||
|
||||
@@ -18,7 +17,7 @@ public class EssentialsConnect
|
||||
{
|
||||
if (!essProtect.getDescription().getVersion().equals(essPlugin.getDescription().getVersion()))
|
||||
{
|
||||
LOGGER.log(Level.WARNING, _("§4Version mismatch! Please update all Essentials jars to the same version."));
|
||||
essPlugin.getLogger().log(Level.WARNING, _("§4Version mismatch! Please update all Essentials jars to the same version."));
|
||||
}
|
||||
ess = ((BukkitPlugin)essPlugin).getEssentials();
|
||||
protect = (IProtect)essProtect;
|
||||
|
@@ -10,7 +10,6 @@ import org.bukkit.plugin.java.JavaPlugin;
|
||||
|
||||
public class EssentialsProtect extends JavaPlugin implements IProtect
|
||||
{
|
||||
private static final Logger LOGGER = Logger.getLogger("Minecraft");
|
||||
private EssentialsConnect ess = null;
|
||||
private ProtectHolder settings = null;
|
||||
|
||||
@@ -45,7 +44,7 @@ public class EssentialsProtect extends JavaPlugin implements IProtect
|
||||
{
|
||||
player.sendMessage("Essentials Protect is in emergency mode. Check your log for errors."); //TODO: tl this
|
||||
}
|
||||
LOGGER.log(Level.SEVERE, "Essentials not installed or failed to load. Essentials Protect is in emergency mode now."); //TODO: tl this
|
||||
getLogger().log(Level.SEVERE, "Essentials not installed or failed to load. Essentials Protect is in emergency mode now."); //TODO: tl this
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Reference in New Issue
Block a user