diff --git a/src/main/java/me/tori/wraith/bus/EventBus.java b/src/main/java/me/tori/wraith/bus/EventBus.java index 76bc234..b806b3f 100644 --- a/src/main/java/me/tori/wraith/bus/EventBus.java +++ b/src/main/java/me/tori/wraith/bus/EventBus.java @@ -6,13 +6,10 @@ import me.tori.wraith.subscriber.ISubscriber; import me.tori.wraith.task.ScheduledTask; import me.tori.wraith.task.TaskExecutor; -import org.jetbrains.annotations.ApiStatus; import java.util.*; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.CopyOnWriteArrayList; -import java.util.logging.LogManager; -import java.util.logging.Logger; /** * Default implementation of {@link IEventBus}, {@link TargetableEventBus}, and {@link InvertableEventBus}. @@ -25,9 +22,6 @@ @SuppressWarnings({"rawtypes", "unchecked"}) public class EventBus implements TargetableEventBus, InvertableEventBus { - @ApiStatus.Internal - private static final Logger LOGGER = LogManager.getLogManager().getLogger("Wraith/EventBus"); - /** * The amount of {@linkplain EventBus} instances that have been created */ @@ -366,7 +360,6 @@ public void clearTaskExecutor() { */ @Override public void shutdown() { - LOGGER.warning("EventBus " + id + " shutting down! Future events will not be dispatched."); shutdown = true; }