log4j 配置文件

依賴jar包web

<dependency>  
    <groupId>log4j</groupId>  
    <artifactId>log4j</artifactId>  
    <version>1.2.17</version>   
</dependency>

 

log4j.propertiesspring

log4j.rootLogger=DEBUG,TEST,FILE  
  
log4j.appender.TEST=org.apache.log4j.ConsoleAppender   
log4j.appender.TEST.layout=org.apache.log4j.PatternLayout   
log4j.appender.TEST.layout.ConversionPattern=[%d] [%p] [%l] [%m] %n  
  
log4j.appender.FILE=org.apache.log4j.RollingFileAppender  
log4j.appender.FILE.File=d:/log.txt  
log4j.appender.FILE.MaxFileSize=100KB  
log4j.appender.FILE.MaxBackupIndex=2  
log4j.appender.FILE.layout=org.apache.log4j.PatternLayout  
log4j.appender.FILE.layout.ConversionPattern=[%d] [%p] [%l] [%m] %n  
  
#------------------------------------------------------------------------  
#    %m 輸出代碼中指定的消息   
#    %p 輸出優先級,即DEBUG,INFO,WARN,ERROR,FATAL   
#    %r 輸出自應用啓動到輸出該log信息耗費的毫秒數   
#    %c 輸出所屬的類目,一般就是所在類的全名   
#    %t 輸出產生該日誌事件的線程名   
#    %n 輸出一個回車換行符,Windows平臺爲「rn」,Unix平臺爲「n」   
#    %d 輸出日誌時間點的日期或時間,默認格式爲ISO8601,也能夠在其後指定格式,好比:%d{yyyy MMM dd HH:mm:ss,SSS},輸出相似:2002年10月18日 :10:28,921  
#    %l 輸出日誌事件的發生位置,包括類目名、發生的線程,以及在代碼中的行數。  
#    %x Used to output the NDC (nested diagnostic context) associated with the thread that generated the logging event  
#    %X Used to output the MDC (mapped diagnostic context) associated with the thread that generated the logging event for specified key  
#------------------------------------------------------------------------

 

web.xml 配置apache

<context-param>
		<param-name>log4jConfigLocation</param-name>
		<param-value>classpath:log4j.properties</param-value>
	</context-param>
	
	<context-param>
		<param-name>log4jRefreshInterval</param-name>
		<param-value>6000</param-value>
	</context-param>
	
	<listener>
		<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
	</listener>
相關文章
相關標籤/搜索