diff --git a/Essentials/src/com/earth2me/essentials/Essentials.java b/Essentials/src/com/earth2me/essentials/Essentials.java index 79639ba9d..3e7209fa1 100644 --- a/Essentials/src/com/earth2me/essentials/Essentials.java +++ b/Essentials/src/com/earth2me/essentials/Essentials.java @@ -155,7 +155,9 @@ public class Essentials extends JavaPlugin implements net.ess3.api.IEssentials { @Override public void onEnable() { try { - LOGGER.setParent(this.getLogger()); + if (LOGGER != this.getLogger()) { + LOGGER.setParent(this.getLogger()); + } execTimer = new ExecuteTimer(); execTimer.start(); i18n = new I18n(this);