java - log4j.properties 文件中 log4j.rootLogger 属性的意义是什么?如果我不使用此属性会怎样?

标签 java logging log4j apache-commons-logging

log4j.properties文件中log4j.rootLogger属性的意义是什么?如果我不使用此属性会怎样?

示例:

# Set root logger level to DEBUG and its only appender to A1.
log4j.rootLogger=DEBUG, A1

# A1 is set to be a ConsoleAppender.
log4j.appender.A1=org.apache.log4j.ConsoleAppender

如果我将此属性设置为 ERROR 模式会发生什么。

最佳答案

Samudra Gupta 在他的书中解释说1:

The Logger object is the main object that an application developer uses to log any message. The Logger objects acting within a particular instance of an application follow a parent-child hierarchy.

如果你有以下配置:

log4j.rootLogger=WARN, stdout
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.SimpleLayout
log4j.logger.com.me.proj2=INFO

这是记录器层次结构最终的样子:2

Tree

Samudra Gupta 继续解释:

At the top of the hierarchy exists a root logger. The root logger exists outside the scope of any custom logger hierarchy that we may come up with. It always exists as the root logger for all possible logger hierarchies, and it has no namespace. All the other application-specific Logger objects are child objects to the root logger. The parent-child relationship of loggers signifies the dependency of the loggers acting within the same application. A child logger can inherit properties from its parent logger recursively up the tree. Typically, a child logger will inherit the following properties from its parent logger(s):

  • Level: If the child logger has no explicit tree level specified, it will use the level of its closest parent or the first proper level it finds recursively up the hierarchy.
  • Appender: If there is no appender attached to a logger, the child logger uses the appender of its closest parent logger or the first appender it finds recursively up the tree.
  • ResourceBundle: ResourceBundles are key-value pattern properties files used for the localization of logging messages. A child logger inherits any ResourceBundle associated with its parent logger.

注意事项

1 Samudra Gupta,Pro Apache Log4j,第二版(加利福尼亚州伯克利:Apress,2005 年),24-25,ISBN13:978-1-59059-499 -5

2 Dominic Mitchell,Java 登录http://happygiraffe.net/blog/2008/09/03/logging-in-java/ , 2014 年 5 月 26 日检索。

关于java - log4j.properties 文件中 log4j.rootLogger 属性的意义是什么?如果我不使用此属性会怎样?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23869207/

相关文章:

java - 在 Spring 中有条件地应用拦截器

java - 如何解决 - ERROR StatusLogger No Log4j 2 配置文件找到

java - 未使用 log4j.properties 文件中提供的日志模式

java - Log4j 不打印堆栈跟踪

java - 通过 slf4j 配置 log4j

java - 如何制作将文本​​放入文本字​​段的下拉菜单

javascript - 未连接到服务器时从 Android webview 中的应用程序缓存加载

子类中的 Java 静态构造函数访问

linux - 如何使用 awk 创建包含字段范围的 csv 文件

logging - GCP 日志路由器接收器没有将日志路由到主题?