기능별 Log Level 변경
JBoss 에서는 인스턴스 내 구현 기능에 따라 log의 설정 및 Level 변경을 할 수가 있습니다.
파일명: jboss-logging.xml
파일경로: /jboss/jboss-6.1.0.Final/server/default/deploy
<!-- ============================================= -->
<!-- Setup the Root category -->
<!-- ============================================= -->
<root-logger>
<!-- Set the root logger priority via a system property, with a default value -->
<level name=${jboss.server.log.threshold:INFO}"/>
<handlers>
<handler-ref name="CONSOL"/> //console Log부분 정의
<handler-ref name="FILE"/> //file Log 부분 정의
</handlers>
</root-logger>
JBoss는 기본적으로 Jakarta Commons Logging 및 Log4j를 포함하고 있습니다.
따라서 로깅 설정은 Log4j를 기반으로 설정하고 위 내용을 참고로 설정을 INFO-->DEBUG 등으로 변경할 수가 있습니다.
--by. 강수현(10월)
'1. 미들웨어이야기 > 03. JBoss' 카테고리의 다른 글
Jboss EAP 6 튜닝의포인트 (0) | 2014.12.02 |
---|---|
JBoss EAP5.X 에서 JSP 변경시 재컴파일 방법 (0) | 2014.12.02 |
JBoss Log 설정 (0) | 2014.12.02 |
JBoss EAP6 (AS7) 튜닝 - ajp connector 에 대한 Thread Pool 생성하기 (0) | 2014.12.02 |
JBoss 바인딩 서비스 포트 설정(기본 제공 외 포트 추가) (0) | 2014.12.02 |