【Log4j一】Log4j总体介绍
编程技术  /  houtizong 发布于 3年前   100
Log4j核心包含三个组件:logger、appender和layout。这三个组件协作提供日志功能:
A logger is said to be an ancestor of another logger if its name followed by a dot is a prefix of the descendant logger name. A logger is said to be a parent of a child logger if there are no ancestors between itself and the descendant logger。For example, the logger named "com.foo" is a parent of the logger named "com.foo.Bar". Similarly, "java" is a parent of "java.util" and an ancestor of "java.util.Vector". This naming scheme should be familiar to most developers
1. 上面的六个日志级别,从上到下级别逐次提高。A logging request(即调用logger的日志输出方法debug,info,war,error等) is said to be enabled if its level is higher than or equal to the level of its logger. Otherwise, the request is said to be disabled. A logger without an assigned level will inherit one from the hierarchy.
2. 假如c是logger对象,并且c的日志级别设置为INFO,那么只有c.info..c.fatal的日志调用才会真正的将日志打印到相应的目标上,c.debug则会抑制日志的输出
2. 一个logger最多指定一个级别
The inherited level for a given logger C, is equal to the first non-null level in the logger hierarchy, starting at C and proceeding upwards in the hierarchy towards the root logger.
如果root logger的日志级别进行了设置,那么所有的logger,都会有不为空的日志级别。实际项目开发中,应该为root logger指定一个默认的日志级别。那面的两个表格是两个日志级别继承的例子:
。
root | Proot | Proot |
X | Px | Px |
X.Y | none | Px |
X.Y.Z | Pxyz | Pxyz |
root | Proot | Proot |
X | Px | Px |
X.Y | none | Px |
X.Y.Z | Pxyz | Pxyz |
在Log4j中,日志输出目标称之为Appender。一个logger可以打印到多个目标,也就是说一个logger可以配置多个appender。Log4j内置了如下几种Appender:
每个appender因为目标介质的不同以及方式的不同,每个类都有特定的一些属性(用于配置)
1. Each enabled logging request for a given logger will be forwarded to all the appenders in that logger as well as the appenders higher(higher here means the hierarchy relationship of logger) in the hierarchy. In other words, appenders are inherited additively from the logger hierarchy. For example, if a console appender is added to the root logger, then all enabled logging requests will at least print on the console. If a file appender is also added to a logger, say C, then enabled logging requests for C and C's children will print on a file and on the console. It is possible to override this default behavior so that appender accumulation is no longer additive by setting the additivity to false.
2. Loggers have their additivity flag set to true by default.
The output of a log statement of logger C will go to all the appenders in C and to all appenders that are defined in its ancestors. This is the meaning of the term "appender additivity".However, if an ancestor of logger C, say P, has the additivity flag set to false, then C's output will be directed to all the appenders in C and its ancestors upto and including P but not the appenders in any of the ancestors of P.
请勿发布不友善或者负能量的内容。与人为善,比聪明更重要!
技术博客集 - 网站简介:
前后端技术:
后端基于Hyperf2.1框架开发,前端使用Bootstrap可视化布局系统生成
网站主要作用:
1.编程技术分享及讨论交流,内置聊天系统;
2.测试交流框架问题,比如:Hyperf、Laravel、TP、beego;
3.本站数据是基于大数据采集等爬虫技术为基础助力分享知识,如有侵权请发邮件到站长邮箱,站长会尽快处理;
4.站长邮箱:[email protected];
文章归档
文章标签
友情链接