From 959e75d16db352924e679fb5be545ee9b264fbd2 Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Mon, 25 Jan 2021 09:46:42 -0500 Subject: [PATCH] Revert "Also provide a "proper" java.util.logger logger to plugins." This reverts commit 8d71ea7135dc14fa9654fbd84f30e23b7693004d. Totally broken --- .../proxy/plugin/loader/java/VelocityPluginModule.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/proxy/src/main/java/com/velocitypowered/proxy/plugin/loader/java/VelocityPluginModule.java b/proxy/src/main/java/com/velocitypowered/proxy/plugin/loader/java/VelocityPluginModule.java index 2bfc33863..77e944ac8 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/plugin/loader/java/VelocityPluginModule.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/plugin/loader/java/VelocityPluginModule.java @@ -31,8 +31,6 @@ class VelocityPluginModule implements Module { binder.bind(description.getMainClass()).in(Scopes.SINGLETON); binder.bind(Logger.class).toInstance(LoggerFactory.getLogger(description.getId())); - binder.bind(java.util.logging.Logger.class) - .toInstance(java.util.logging.Logger.getLogger(description.getId())); binder.bind(Path.class).annotatedWith(DataDirectory.class) .toInstance(basePluginPath.resolve(description.getId())); binder.bind(PluginDescription.class).toInstance(description);