logback

Logback integration for javabrake

Лицензия

Лицензия

Категории

Категории

Logback Библиотеки уровня приложения Logging
Группа

Группа

io.airbrake
Идентификатор

Идентификатор

logback
Последняя версия

Последняя версия

0.1.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

logback
Logback integration for javabrake
Ссылка на сайт

Ссылка на сайт

https://airbrake.io
Система контроля версий

Система контроля версий

https://github.com/airbrake/logback

Скачать logback

Как подключить последнюю версию

<!-- 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"]

Зависимости

compile (3)

Идентификатор библиотеки Тип Версия
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)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.12

Модули Проекта

Данный проект не имеет модулей.

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

Версии библиотеки

Версия
0.1.1
0.1.0