logging_slf4j_jul
Contains the logger adapter for the SLF4J JUL logging library.
Install the Dependency
=== "build.gradle"
```groovy
implementation("com.hexagonkt:logging_slf4j_jul:$hexagonVersion")
```
Content copied to clipboard
=== "pom.xml"
```xml
com.hexagonkt logging_slf4j_jul $hexagonVersion
```
Content copied to clipboard
ℹ️ Info
The above adapter bridge other logging libraries that may be used by other third party libraries you use (if you want to disable this behaviour, you need to explicitly exclude bridging libraries).
=== "build.gradle"
```groovy
// Bridges
runtimeOnly("org.slf4j:jcl-over-slf4j:1.7.30")
runtimeOnly("org.slf4j:log4j-over-slf4j:1.7.30")
```
Content copied to clipboard
=== "pom.xml"
```xml
org.slf4j jcl-over-slf4j 1.7.30 org.slf4j log4j-over-slf4j 1.7.30
```
Content copied to clipboard