Quartz Scheduler를 사용하면 console log에 아래와 같은 로그가 주기적으로 나타나는 경우가 있다.
[org.quartz.core.QuartzSchedulerThread] batch acquisition of 0 triggers
이 로그가 보기 싫은 경우 logger를 설정하여 해결 할 수 있다.
- org.quartz.core.QuartzSchedulerThread 클래스에 대한 로거를 작성 후 레벨을 error로 설정합니다.
- root의 priority를 value를 debug로 설정합니다.
<root>
<priority value="debug" /> <-- 출력 로그 레벨 설정
....
...
..
<appender-ref ref="console" />
</root>
'Development > Java' 카테고리의 다른 글
logback 취약점에 따른 취약점 조치 (0) | 2021.12.20 |
---|---|
log4j 2.x 버전 다운로드 (0) | 2021.12.14 |
[Log4j 2] 환경설정 (0) | 2021.05.27 |
JDBC 드라이버 사용시 오라클 클라이언트 설치가 필요할까? (0) | 2020.12.07 |
iReport Designer Tool 가이드 (0) | 2020.03.30 |