You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ad...@apache.org on 2004/03/23 05:00:53 UTC

cvs commit: incubator-geronimo/modules/network log4j.properties

adc         2004/03/22 20:00:53

  Added:       modules/network log4j.properties
  Log:
  Automatically save network log files when tests are run.
  
  Revision  Changes    Path
  1.1                  incubator-geronimo/modules/network/log4j.properties
  
  Index: log4j.properties
  ===================================================================
  #### Use two appenders, one to log to console, another to log to a file
  log4j.rootCategory=debug, R
  
  ####  appender writes to a file
  log4j.appender.R=org.apache.log4j.RollingFileAppender
  log4j.appender.R.File=target/test-reports/network.log
  
  # Control the maximum log file size
  log4j.appender.R.MaxFileSize=100KB
  # Archive log files (one backup file here)
  log4j.appender.R.MaxBackupIndex=1
  
  log4j.appender.R.layout=org.apache.log4j.PatternLayout
  log4j.appender.R.layout.ConversionPattern=%6r %5p [%t] (%F:%L) - %m%n