log4j.properties
上传用户:huijianzhu
上传日期:2009-11-25
资源大小:9825k
文件大小:2k
源码类别:

电子政务应用

开发平台:

Java

  1. # This is the configuring for logging displayed in the Application Server
  2. # log4j.rootCategory=INFO, stdout
  3. # Replace the line above if you want to put a log file into the directory
  4. # you start Tomcat from
  5. log4j.rootLogger=ERROR, stdout, R
  6. log4j.appender.stdout=org.apache.log4j.ConsoleAppender
  7. log4j.appender.stdout.Target=System.out
  8. log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
  9. # Pattern to output the caller's file name and line number.
  10. log4j.appender.stdout.layout.ConversionPattern=[demo] %p [%t] %C{1}.%M(%L) | %m%n
  11. log4j.appender.R=org.apache.log4j.RollingFileAppender
  12. # You can change this to be an absolute path or even an environment variable
  13. # If you're using an environment variable, you will have to set JAVA_OPTS
  14. # to contain this variables - for example in the catalina.sh or catalina.bat
  15. # file
  16. log4j.appender.R.File=c:\demo.log
  17. log4j.appender.R.MaxFileSize=1000KB
  18. # Don't keep a backup file
  19. log4j.appender.R.MaxBackupIndex=2
  20. log4j.appender.R.layout=org.apache.log4j.PatternLayout
  21. log4j.appender.R.layout.ConversionPattern=%p %t %c - %m%n
  22. # If programmed properly the most messages would be at DEBUG
  23. # and the least at FATAL.
  24. log4j.logger.cn.com.xunuo=DEBUG
  25. log4j.logger.cn.com.xunuo.util=WARN
  26. # Control logging for other open source packages
  27. log4j.logger.net.sf.navigator=ERROR
  28. log4j.logger.org.apache.commons=ERROR
  29. log4j.logger.org.apache.struts=WARN
  30. log4j.logger.org.springframework=WARN
  31. log4j.logger.org.apache.velocity=FATAL
  32. # All hibernate log output of "info" level or higher goes to stdout.
  33. # For more verbose logging, change the "info" to "debug" on the last line.
  34. #log4j.logger.net.sf.hibernate.ps.PreparedStatementCache=WARN
  35. log4j.logger.net.sf.hibernate=WARN