You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-dev@jakarta.apache.org by di...@apache.org on 2001/08/18 15:51:24 UTC

cvs commit: jakarta-slide/src/conf/webapp log4j.properties

dirkv       01/08/18 06:51:24

  Added:       src/conf/webapp log4j.properties
  Log:
  example log4j property file
  
  Revision  Changes    Path
  1.1                  jakarta-slide/src/conf/webapp/log4j.properties
  
  Index: log4j.properties
  ===================================================================
  log4j.rootCategory=DEBUG,stdout,R
  
  log4j.category.org.apache.slide.webdav.WebdavServlet.requestResponseLogger=FATAL
  
  ########################################
  log4j.appender.stdout=org.apache.log4j.ConsoleAppender
  log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
  
  # Pattern to output the caller's file name and line number.
  #log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n
  log4j.appender.stdout.layout.ConversionPattern=%4p [%t] %c - %m%n
  
  log4j.appender.R=org.apache.log4j.RollingFileAppender
  log4j.appender.R.File=slide.log
  
  log4j.appender.R.ImmediateFlush=true
  
  log4j.appender.R.MaxFileSize=100KB
  # Keep one backup file
  log4j.appender.R.MaxBackupIndex=1
  
  log4j.appender.R.layout=org.apache.log4j.PatternLayout
  #log4j.appender.R.layout.ConversionPattern=%p %t %c - %m%n
  log4j.appender.R.layout.ConversionPattern=%4p [%t] %c - %m%n