Skip to content

jboss-logging/slf4j-jboss-logging

SLF4J Binding to JBoss Logging

The SLF4J binding to JBoss Logging is just as it sounds. It’s a SLF4J binding which sends log messages through JBoss Logging. While this may seem odd to redirect log messages from one logging facade to another, it’s useful in some cases. This project is currently used in WildFly and JBoss EAP.

Usage

To use the project you need both SLF4J and JBoss Logging on your class path. Then simply add this library and it should be picked up as the SLF4J binding.

Maven

<dependency>
    <groupId>org.jboss.logging</groupId>
    <artifactId>slf4j-jboss-logging</artifactId>
    <version>1.2.1.Final</version>
</dependency>

Contributing