log4j 日志打印2遍

发布于 2021-12-02 12:41:41 字数 2865 浏览 806 评论 2

日志如下:

[INFO] org.springframework.web.context.ContextLoader,2016-07-26 19:22:29,865,Root WebApplicationContext: initialization started
[INFO] org.springframework.web.context.ContextLoader,2016-07-26 19:22:29,865,Root WebApplicationContext: initialization started
[DEBUG] org.springframework.web.context.support.StandardServletEnvironment,2016-07-26 19:22:30,141,Initializing new StandardServletEnvironment
[DEBUG] org.springframework.web.context.support.StandardServletEnvironment,2016-07-26 19:22:30,141,Initializing new StandardServletEnvironment
[DEBUG] org.springframework.web.context.support.StandardServletEnvironment,2016-07-26 19:22:30,144,Adding [servletConfigInitParams] PropertySource with lowest search precedence
[DEBUG] org.springframework.web.context.support.StandardServletEnvironment,2016-07-26 19:22:30,144,Adding [servletConfigInitParams] PropertySource with lowest search precedence
[DEBUG] org.springframework.web.context.support.StandardServletEnvironment,2016-07-26 19:22:30,145,Adding [servletContextInitParams] PropertySource with lowest search precedence
[DEBUG] org.springframework.web.context.support.StandardServletEnvironment,2016-07-26 19:22:30,145,Adding [servletContextInitParams] PropertySource with lowest search precedence
[DEBUG] org.springframework.web.context.support.StandardServletEnvironment,2016-07-26 19:22:30,160,Adding [jndiProperties] PropertySource with lowest search precedence
[DEBUG] org.springframework.web.context.support.StandardServletEnvironment,2016-07-26 19:22:30,160,Adding [jndiProperties] PropertySource with lowest search precedence
[DEBUG] org.springframework.web.context.support.StandardServletEnvironment,2016-07-26 19:22:30,161,Adding [systemProperties] PropertySource with lowest search precedence
[DEBUG] org.springframework.web.context.support.StandardServletEnvironment,2016-07-26 19:22:30,161,Adding [systemProperties] PropertySource with lowest search precedence
[DEBUG] org.springframework.web.context.support.StandardServletEnvironment,2016-07-26 19:22:30,161,Adding [systemEnvironment] PropertySource with lowest search precedence
[DEBUG] org.springframework.web.context.support.StandardServletEnvironment,2016-07-26 19:22:30,161,Adding [systemEnvironment] PropertySource with lowest search precedence

全部输出2次,感觉像是项目启动了2次一样.

log4j.xml配置如下:

<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">


<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">


  <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
    <layout class="org.apache.log4j.PatternLayout">
      <param name="ConversionPattern" value="[%p] %c,%d{yyyy-MM-dd HH

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

混吃等死 2021-12-04 05:24:06

引用来自“小王爷威武”的评论

因为配置了这一段:

<logger name="org.springframework" additivity="true"> <level value="DEBUG"/> <appender-ref ref="CONSOLE"/> </logger>

所以
org.springframework.web.context.ContextLoader就打印了日志。

而且还配置了additivity="true",所以还会找上一级日志:org.springframework.web.context,

没有的话,再找org.springframework.web,依此类推,找到org都没有,再往上找就是root了。

<root> <priority value="DEBUG"/> <appender-ref ref="ERROR_FILE_LOG"/> <appender-ref ref="DEBUG_FILE_LOG"/> <appender-ref ref="CONSOLE"/> </root>

root你已经配置了,所以又打印了

平生欢 2021-12-04 05:07:04

因为配置了这一段:

<logger name="org.springframework" additivity="true"> <level value="DEBUG"/> <appender-ref ref="CONSOLE"/> </logger>

所以
org.springframework.web.context.ContextLoader就打印了日志。

而且还配置了additivity="true",所以还会找上一级日志:org.springframework.web.context,

没有的话,再找org.springframework.web,依此类推,找到org都没有,再往上找就是root了。

<root> <priority value="DEBUG"/> <appender-ref ref="ERROR_FILE_LOG"/> <appender-ref ref="DEBUG_FILE_LOG"/> <appender-ref ref="CONSOLE"/> </root>

root你已经配置了,所以又打印了

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文