logging_slf4j_jul 2.6.4 API
Contains the logger adapter for the SLF4J JUL logging library.
=== "build.gradle"
```groovy
implementation("com.hexagonkt:logging_slf4j_jul:$hexagonVersion")
```=== "pom.xml"
```xml
com.hexagonkt
logging_slf4j_jul
$hexagonVersion
```ℹ️ Info
<sup>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).</sup>
=== "build.gradle"
```groovy
// Bridges
runtimeOnly("org.slf4j:jcl-over-slf4j:1.7.30")
runtimeOnly("org.slf4j:log4j-over-slf4j:1.7.30")
```=== "pom.xml"
```xml
org.slf4j
jcl-over-slf4j
1.7.30
org.slf4j
log4j-over-slf4j
1.7.30
```See: Description
| Package | Description |
|---|---|
| com.hexagonkt.logging.slf4j.jul | Provides a logging management capabilities abstracting the application from logging libraries. |