13
0
geforkt von Mirrors/Velocity

Revert "Also provide a "proper" java.util.logger logger to plugins."

This reverts commit 8d71ea7135.

Totally broken
Dieser Commit ist enthalten in:
Andrew Steinborn 2021-01-25 09:46:42 -05:00
Ursprung 8d71ea7135
Commit 959e75d16d

Datei anzeigen

@ -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);