- 1、本文档共26页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
log4j实例及参数配置(国外英文资料)
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
文档评论(0)