<tfoot id='V5B1i'></tfoot><legend id='V5B1i'><style id='V5B1i'><dir id='V5B1i'><q id='V5B1i'></q></dir></style></legend>

    <bdo id='V5B1i'></bdo><ul id='V5B1i'></ul>

<small id='V5B1i'></small><noframes id='V5B1i'>

        <i id='V5B1i'><tr id='V5B1i'><dt id='V5B1i'><q id='V5B1i'><span id='V5B1i'><b id='V5B1i'><form id='V5B1i'><ins id='V5B1i'></ins><ul id='V5B1i'></ul><sub id='V5B1i'></sub></form><legend id='V5B1i'></legend><bdo id='V5B1i'><pre id='V5B1i'><center id='V5B1i'></center></pre></bdo></b><th id='V5B1i'></th></span></q></dt></tr></i><div id='V5B1i'><tfoot id='V5B1i'></tfoot><dl id='V5B1i'><fieldset id='V5B1i'></fieldset></dl></div>

        使用 SMTPAppender 我只收到 ERROR 而不是 INFO 类型的日志项

        with SMTPAppender I receive only ERROR and not INFO type of log items(使用 SMTPAppender 我只收到 ERROR 而不是 INFO 类型的日志项)
          <i id='ATGfa'><tr id='ATGfa'><dt id='ATGfa'><q id='ATGfa'><span id='ATGfa'><b id='ATGfa'><form id='ATGfa'><ins id='ATGfa'></ins><ul id='ATGfa'></ul><sub id='ATGfa'></sub></form><legend id='ATGfa'></legend><bdo id='ATGfa'><pre id='ATGfa'><center id='ATGfa'></center></pre></bdo></b><th id='ATGfa'></th></span></q></dt></tr></i><div id='ATGfa'><tfoot id='ATGfa'></tfoot><dl id='ATGfa'><fieldset id='ATGfa'></fieldset></dl></div>
          <legend id='ATGfa'><style id='ATGfa'><dir id='ATGfa'><q id='ATGfa'></q></dir></style></legend>

          • <small id='ATGfa'></small><noframes id='ATGfa'>

                  <tbody id='ATGfa'></tbody>
                  <bdo id='ATGfa'></bdo><ul id='ATGfa'></ul>

                • <tfoot id='ATGfa'></tfoot>
                  本文介绍了使用 SMTPAppender 我只收到 ERROR 而不是 INFO 类型的日志项的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我已经在我的 Java 应用中配置了一个 SMTPAppender.

                  I've configured an SMTPAppender into my Java app.

                  <appender name="AdministratorEmail" class="org.apache.log4j.net.SMTPAppender">
                    <param name="Threshold" value="info" />
                    <param name="BufferSize" value="512" />
                    <param name="SMTPHost" value="smtp.sss.intranet" />
                    <param name="From" value="adminEbookMaker@sss.intranet" />
                    <param name="To" value="user@sss.it" />
                    <param name="Subject" value="errors" />       
                    <layout class="org.apache.log4j.PatternLayout">
                      <param name="ConversionPattern" value="[%d{ISO8601}]%n%n%-5p%n%n%c%n%n%m%n%n" />
                    </layout>
                    <filter class="org.apache.log4j.varia.LevelRangeFilter">
                      <param name="LevelMin" value="info" />
                      <param name="LevelMax" value="fatal" />
                    </filter>
                  </appender>
                  

                  我只收到 ERROR 日志类型而不是 INFO 类型!我更改了 LevelMin 但没有,我插入了 Thresold,但没有!

                  I receive only the ERROR log type and not the INFO type! I changed the LevelMin but nothing, I inserted the Thresold, but nothing!

                  有人有什么建议吗?

                  推荐答案

                  设计的 SMTPAppender 只记录 ERROR 及以上的消息.此级别不受属性影响.附加状态的文档:

                  The SMTPAppender by design only logs ERROR and above messages. This level cannot be affected by properties. The documentation for the appended states:

                  默认情况下,当附加 ERROR 或更高严重性的消息时,将发送电子邮件消息.可以通过使用实现 TriggeringEventEvaluator 的类的名称设置 evaluatorClass 属性、使用 TriggeringEventEvaluator 的实例设置 evaluator 属性或在指定类实现 TriggeringEventEvaluator 的位置嵌套 triggeringPolicy 元素来修改触发条件

                  By default, an email message will be sent when an ERROR or higher severity message is appended. The triggering criteria can be modified by setting the evaluatorClass property with the name of a class implementing TriggeringEventEvaluator, setting the evaluator property with an instance of TriggeringEventEvaluator or nesting a triggeringPolicy element where the specified class implements TriggeringEventEvaluator

                  请参阅:类 SMTPAppender

                  您仅在第一个 ERROR 之后才看到 INFO 消息的事实是由于 bufferSize 属性显示了错误之前的n"个最近的日志行,以便为错误提供上下文.

                  The fact that you are seeing INFO messages only after the first ERROR is due to the bufferSize property which shows the 'n' most recent log lines before the error to give context to the error.

                  对此的进一步研究表明,在附加伴侣"中存在 TriggerEventEvaluator 所需接口的实现

                  Further research on this shows that there is an implementation of the required interface for TriggerEventEvaluator in the 'extras companion'

                  可以从以下位置下载:Apache 下载镜像

                  如果您将其包含在您的项目中,则可以将以下内容添加到 log4j.xml 中的 SMTPAppender 定义中(注意不支持属性格式!)

                  If you include this in your project you can then add the following to your SMTPAppender definition in log4j.xml (note the properties format is not supported!)

                    <appender name="SMTP" class="org.apache.log4j.net.SMTPAppender">
                  ...
                      <triggeringPolicy  class="org.apache.log4j.rolling.FilterBasedTriggeringPolicy">
                        <filter class="org.apache.log4j.filter.LevelRangeFilter">
                          <param name="levelMin" value="INFO" />
                        </filter>
                      </triggeringPolicy>
                  ...
                    </appender>
                  

                  这篇关于使用 SMTPAppender 我只收到 ERROR 而不是 INFO 类型的日志项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Compiling C++ for the JVM(为 JVM 编译 C++)
                  Compile to java bytecode (without using Java)(编译成java字节码(不使用Java))
                  How to drive C#, C++ or Java compiler to compute 1+2+3+...+1000 at compile time?(如何在编译时驱动 C#、C++ 或 Java 编译器计算 1+2+3+...+1000?)
                  Java ClassLoader: load same class twice(Java ClassLoader:两次加载相同的类)
                  How to debug .class files in ECLIPSE?(如何在 ECLIPSE 中调试 .class 文件?)
                  Java quot;The blank final field may not have been initializedquot; Anonymous Interface vs Lambda Expression(Java“可能尚未初始化空白的最终字段匿名接口与 Lambda 表达式)
                  <legend id='0KXw3'><style id='0KXw3'><dir id='0KXw3'><q id='0KXw3'></q></dir></style></legend>

                    <tbody id='0KXw3'></tbody>

                        <i id='0KXw3'><tr id='0KXw3'><dt id='0KXw3'><q id='0KXw3'><span id='0KXw3'><b id='0KXw3'><form id='0KXw3'><ins id='0KXw3'></ins><ul id='0KXw3'></ul><sub id='0KXw3'></sub></form><legend id='0KXw3'></legend><bdo id='0KXw3'><pre id='0KXw3'><center id='0KXw3'></center></pre></bdo></b><th id='0KXw3'></th></span></q></dt></tr></i><div id='0KXw3'><tfoot id='0KXw3'></tfoot><dl id='0KXw3'><fieldset id='0KXw3'></fieldset></dl></div>
                      • <small id='0KXw3'></small><noframes id='0KXw3'>

                        1. <tfoot id='0KXw3'></tfoot>
                          • <bdo id='0KXw3'></bdo><ul id='0KXw3'></ul>