log4j实例及参数配置(国外英文资料).doc
文本预览下载声明
log4j实例及参数配置(国外英文资料)
Log4j. RootLogger = info, file, console
Log4j. Appender. File = org. Apache
Log4j.appenders. File. File. File. File
. # log4j appenders. File. MaxFileSize = 4000 KB
. # log4j appenders. File. MaxBackupIndex = 10
Log4j. Appender. File.layout = org. Apache
Log4j.appender. File.layout
# log4j.appender. File.layout. ConversionPattern = % -d {yy/MM/dd HH: MM: ss}
log4j.appender
Log4j.appender. Console. Layout = org. Apache
Log4j. Appender. Console. Layout. ConversionPattern = % -d {yyyy/MM/dd HH: MM: ss, SSS}
Log4j.appender. File. DatePattern = yyymmdd.log
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
Log4j. Use the properties
One. Parametric meaning
Type of output level
The ERROR, WARN, INFO, the DEBUG
ERROR is primarily a program ERROR for serious errors
WARN is a general warning, such as session loss
INFO is typically displayed for information such as login
DEBUG the DEBUG information for the program
Configure the log information output destination
Log4j. Appender. AppenderName = fully. Qualified
1.org.apache.log4j.ConsoleAppender (console)
2.org.apache.log4j.FileAppender (file)
3.org.apache.log4j.DailyRollingFileAppender (creating a log file every day)
4.org.apache.log4j.RollingFileAppender (the file size reaches the specified size and produces a new file)
5.org.apache.log4j.WriterAppender (sending the log information to any given location in stream format)
#
(1). ConsoleAppender options
Threshold = WARN: specifies the lowest level of output for the log message.
ImmediateFlush = true: the default value is true, means that all of the message will be output immediately.
Target = system.err: by default, system.out, specify the output console
(2).fileappender options
Threshold = WARN: specifies the lowest level of output for the log message.
ImmediateFlush = true: the default value is true, means that all of the m
显示全部