log4j.properties
上传用户:huijianzhu
上传日期:2009-11-25
资源大小:9825k
文件大小:2k
- # This is the configuring for logging displayed in the Application Server
- # log4j.rootCategory=INFO, stdout
- # Replace the line above if you want to put a log file into the directory
- # you start Tomcat from
- log4j.rootLogger=ERROR, stdout, R
- log4j.appender.stdout=org.apache.log4j.ConsoleAppender
- log4j.appender.stdout.Target=System.out
- log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
- # Pattern to output the caller's file name and line number.
- log4j.appender.stdout.layout.ConversionPattern=[demo] %p [%t] %C{1}.%M(%L) | %m%n
- log4j.appender.R=org.apache.log4j.RollingFileAppender
- # You can change this to be an absolute path or even an environment variable
- # If you're using an environment variable, you will have to set JAVA_OPTS
- # to contain this variables - for example in the catalina.sh or catalina.bat
- # file
- log4j.appender.R.File=c:\demo.log
- log4j.appender.R.MaxFileSize=1000KB
- # Don't keep a backup file
- log4j.appender.R.MaxBackupIndex=2
- log4j.appender.R.layout=org.apache.log4j.PatternLayout
- log4j.appender.R.layout.ConversionPattern=%p %t %c - %m%n
- # If programmed properly the most messages would be at DEBUG
- # and the least at FATAL.
- log4j.logger.cn.com.xunuo=DEBUG
- log4j.logger.cn.com.xunuo.util=WARN
- # Control logging for other open source packages
- log4j.logger.net.sf.navigator=ERROR
- log4j.logger.org.apache.commons=ERROR
- log4j.logger.org.apache.struts=WARN
- log4j.logger.org.springframework=WARN
- log4j.logger.org.apache.velocity=FATAL
- # All hibernate log output of "info" level or higher goes to stdout.
- # For more verbose logging, change the "info" to "debug" on the last line.
- #log4j.logger.net.sf.hibernate.ps.PreparedStatementCache=WARN
- log4j.logger.net.sf.hibernate=WARN