From 744e3eab49b9499e6862219c0e051bccf115e03a Mon Sep 17 00:00:00 2001 From: Minecrell Date: Fri, 22 Sep 2017 13:15:09 +0200 Subject: [PATCH] Allow plugins to use SLF4J for logging diff --git a/api/src/main/java/net/md_5/bungee/api/plugin/Plugin.java b/api/src/main/java/net/md_5/bungee/api/plugin/Plugin.java index 9660234d..3d1e9a3a 100644 --- a/api/src/main/java/net/md_5/bungee/api/plugin/Plugin.java +++ b/api/src/main/java/net/md_5/bungee/api/plugin/Plugin.java @@ -44,6 +44,13 @@ public class Plugin // init( proxy, description ); } + // Waterfall start - Allow plugins to use SLF4J for logging + public org.slf4j.Logger getSLF4JLogger() { + return org.slf4j.LoggerFactory.getLogger(logger.getName()); + } + // Waterfall end + + /** * Called when the plugin has just been loaded. Most of the proxy will not * be initialized, so only use it for registering diff --git a/log4j/pom.xml b/log4j/pom.xml index 4bb98d5a..f9bdf71f 100644 --- a/log4j/pom.xml +++ b/log4j/pom.xml @@ -38,6 +38,24 @@ log4j-jul ${log4j2.version} + + org.apache.logging.log4j + log4j-slf4j-impl + ${log4j2.version} + runtime + + + org.slf4j + slf4j-api + + + + + org.slf4j + slf4j-api + 1.7.36 + runtime + com.lmax disruptor -- 2.44.0