[WebTier/Apache] How to set log level as debug to specific module
1. Overview
Apache/OHS 의 LogLevel 지시어로 특정 모듈만 수준을 지정하는 방법
2. Descriptions
1
2
# 전체 모듈 디버그
LogLevel debug
위 설정 시, 모든 모듈이 아래 처럼 로깅된다.
1
2
3
4
[Thu Aug 28 12:59:54.561070 2025] [weblogic:debug] ...
[Thu Aug 28 12:59:59.193258 2025] [ossl:debug] ...
[Thu Aug 28 13:00:18.293794 2025] [ossl:info] ...
[Thu Aug 28 13:00:18.297455 2025] [socache_shmcb:debug] ...
1
2
# weblogic(mod_wl_ohs) 모듈만 디버그
LogLevel warn weblogic:debug
이후, WebLogic Proxy Module만 Debug 기록된다.