blob: d746c04c6e1271b5b1a184caa60bb145f8487523 [file] [log] [blame]
#############################################################################
#
# log4j Settings - Load Test Mode
#
# The log4j configuration used by XLT when running the tests as a load test.
#
#############################################################################
# Copyright 2001-2009 The Apache Software Foundation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
### Logger definitions ###
log4j.rootLogger = warn, file
log4j.logger.runtime = warn, file
log4j.additivity.runtime = false
log4j.logger.com.xceptance = warn, file
log4j.additivity.com.xceptance = false
log4j.logger.com.gargoylesoftware.htmlunit = warn, file
log4j.additivity.com.gargoylesoftware.htmlunit = false
### Appender definitions ###
## console (typically not used)
log4j.appender.console = org.apache.log4j.ConsoleAppender
log4j.appender.console.layout = org.apache.log4j.PatternLayout
log4j.appender.console.layout.ConversionPattern = [%d{HH:mm:ss,SSS}] %-5p [%t] - %m%n
## log file
log4j.appender.file = org.apache.log4j.RollingFileAppender
log4j.appender.file.File = ${com.xceptance.xlt.agent.home}/results/agent.log
log4j.appender.file.MaxFileSize = 10MB
log4j.appender.file.MaxBackupIndex = 10
log4j.appender.file.layout = org.apache.log4j.PatternLayout
log4j.appender.file.layout.ConversionPattern = [%d{yyyy/MM/dd-HH:mm:ss,SSS}] %-5p [%t] %c - %m%n