logging_logback

Contains the logger adapter for the Logback logging library.

Install the Dependency

=== "build.gradle"

```groovy
implementation("com.hexagonkt:logging_logback:$hexagonVersion")
```

=== "pom.xml"

```xml



  com.hexagonkt
  logging_logback
  $hexagonVersion

```

ℹ️ 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")
runtimeOnly("org.slf4j:jul-to-slf4j:1.7.30")
```

=== "pom.xml"

```xml

  org.slf4j
  jcl-over-slf4j
  1.7.30


  org.slf4j
  log4j-over-slf4j
  1.7.30


  org.slf4j
  jul-to-slf4j
  1.7.30

```

Packages

Link copied to clipboard

Provides a logging management capabilities abstracting the application from logging libraries.