Remove getSLF4JLogger method

This commit is contained in:
Roman Zhuravlev 2025-08-31 19:32:04 +05:00
parent e6f026109b
commit 1d501f0bf2

View file

@ -1,4 +1,4 @@
package org.zhdev.varioutil; package org.zhdev;
import com.velocitypowered.api.proxy.ProxyServer; import com.velocitypowered.api.proxy.ProxyServer;
import org.slf4j.Logger; import org.slf4j.Logger;
@ -27,8 +27,4 @@ public abstract class VelocityPlugin {
public java.util.logging.Logger getLogger() { public java.util.logging.Logger getLogger() {
return java.util.logging.Logger.getLogger(logger.getName()); return java.util.logging.Logger.getLogger(logger.getName());
} }
public Logger getSLF4JLogger() {
return logger;
}
} }