blob: 59a470e5adf314838b04c45fcc425fd0743372fe [file] [log] [blame]
#### 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/axis.log
# Control the maximum log file size
log4j.appender.R.MaxFileSize=10000KB
# Archive log files (one backup file here)
log4j.appender.R.MaxBackupIndex=100
log4j.appender.R.layout=org.apache.log4j.PatternLayout
log4j.appender.R.layout.ConversionPattern=%6r %5p [%t] (%F:%L) - %m%n