logback

Logback integration for javabrake

License

License

Categories

Categories

Logback Application Layer Libs Logging
GroupId

GroupId

io.airbrake
ArtifactId

ArtifactId

logback
Last Version

Last Version

0.1.1
Release Date

Release Date

Type

Type

jar
Description

Description

logback
Logback integration for javabrake
Project URL

Project URL

https://airbrake.io
Source Code Management

Source Code Management

https://github.com/airbrake/logback

Download logback

How to add to project

<!-- https://jarcasting.com/artifacts/io.airbrake/logback/ -->
<dependency>
    <groupId>io.airbrake</groupId>
    <artifactId>logback</artifactId>
    <version>0.1.1</version>
</dependency>
// https://jarcasting.com/artifacts/io.airbrake/logback/
implementation 'io.airbrake:logback:0.1.1'
// https://jarcasting.com/artifacts/io.airbrake/logback/
implementation ("io.airbrake:logback:0.1.1")
'io.airbrake:logback:jar:0.1.1'
<dependency org="io.airbrake" name="logback" rev="0.1.1">
  <artifact name="logback" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.airbrake', module='logback', version='0.1.1')
)
libraryDependencies += "io.airbrake" % "logback" % "0.1.1"
[io.airbrake/logback "0.1.1"]

Dependencies

compile (3)

Group / Artifact Type Version
io.airbrake : javabrake jar 0.1.6
ch.qos.logback : logback-classic jar 1.2.3
org.slf4j : slf4j-api jar 1.7.25

test (1)

Group / Artifact Type Version
junit : junit jar 4.12

Project Modules

There are no modules declared in this project.

logback appender for javabrake

Build Status

Installation

Gradle:

compile 'io.airbrake:logback:0.1.1'

Maven:

<dependency>
  <groupId>io.airbrake</groupId>
  <artifactId>logback</artifactId>
  <version>0.1.1</version>
</dependency>

Ivy:

<dependency org='io.airbrake' name='logback' rev='0.1.1'>
  <artifact name='logback' ext='pom'></artifact>
</dependency>

Configuration

<configuration>
  <appender name="Console" class="ch.qos.logback.core.ConsoleAppender">
    <encoder>
      <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
    </encoder>
  </appender>

  <appender name="Airbrake" class="io.airbrake.logback.AirbrakeAppender">
    <projectId>12345</projectId>
    <projectKey>FIXME</projectKey>
    <env>production</env>
    <filter class="ch.qos.logback.classic.filter.ThresholdFilter">
        <level>ERROR</level>
    </filter>
  </appender>

  <root level="INFO">
    <appender-ref ref="Console" />
    <appender-ref ref="Airbrake" />
  </root>
</configuration>
io.airbrake

Airbrake

Visibility into your Application's Health

Versions

Version
0.1.1
0.1.0