最佳答案
我刚刚完成了 log4j2.xml 配置文件的调整,发现了一些我不太理解的东西?
几乎在所有的例子中: Http://logging.apache.org/log4j/2.x/manual/configuration.html Apache 的人员为配置添加了状态。
例如,这里是第一个:
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="WARN"> <!--status="WARN" - what is this???-->
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
</Console>
</Appenders>
<Loggers>
<Root level="error">
<AppenderRef ref="Console"/>
</Root>
</Loggers>
</Configuration>