sentry 1.7.x 에서
sentry 설정을 제대로 한 것 같은 데 에러가 아래와 같이 발생할 수 있다.
<appender name="SENTRY" class="io.sentry.logback.SentryAppender">
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
<level>WARN</level>
</filter>
</appender>
<root level="INFO">
<appender-ref ref="ROLLING" />
<appender-ref ref="STDOUT" />
<appender-ref ref="SENTRY"/>
</root>
ERROR in ch.qos.logback.core.joran.action.AppenderAction - Could not create an Appender of type [io.sentry.logback.SentryAppender]. ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type io.sentry.logback.SentryAppender
이유는 다음 io.sentry:sentry-logback도 함께 추가했어야 했는데. 못했기 때문에 에러가 발생한 것이다.
<dependency>
<groupId>io.sentry</groupId>
<artifactId>sentry-logback</artifactId>
<version>1.7.16</version>
</dependency>
'etc tools' 카테고리의 다른 글
[td-agent] Connection error EOFError: EOFError 문제 해결하기 (0) | 2019.10.15 |
---|---|
Intellij에서 한 프로젝트 열고 여러 프로젝트 임포트하기 (Open multiple projects in Intellij) (0) | 2019.09.02 |
sentry-logback 연동 (0) | 2019.03.12 |
:makefile:4: *** missing separator. Stop. 해결하기 (1) | 2019.03.06 |
github의 SSH 키 지문(fingerprint) (0) | 2019.02.25 |