Skip to content

jboss-logging/slf4j-jboss-logging

Folders and files

NameName
Last commit message
Last commit date
Dec 15, 2023
Jan 30, 2023
Jan 19, 2023
Jan 19, 2023
Jan 19, 2023
Jan 19, 2023
Jan 19, 2023
Sep 21, 2020
Aug 19, 2023
Feb 6, 2023
Feb 6, 2024

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