<small id='03ZPH'></small><noframes id='03ZPH'>

    <legend id='03ZPH'><style id='03ZPH'><dir id='03ZPH'><q id='03ZPH'></q></dir></style></legend>
    • <bdo id='03ZPH'></bdo><ul id='03ZPH'></ul>
    <i id='03ZPH'><tr id='03ZPH'><dt id='03ZPH'><q id='03ZPH'><span id='03ZPH'><b id='03ZPH'><form id='03ZPH'><ins id='03ZPH'></ins><ul id='03ZPH'></ul><sub id='03ZPH'></sub></form><legend id='03ZPH'></legend><bdo id='03ZPH'><pre id='03ZPH'><center id='03ZPH'></center></pre></bdo></b><th id='03ZPH'></th></span></q></dt></tr></i><div id='03ZPH'><tfoot id='03ZPH'></tfoot><dl id='03ZPH'><fieldset id='03ZPH'></fieldset></dl></div>
    1. <tfoot id='03ZPH'></tfoot>

        如何在 TestNG 报告中包含 Log4j2 消息

        时间:2023-10-01

              <tbody id='AovaJ'></tbody>
          1. <i id='AovaJ'><tr id='AovaJ'><dt id='AovaJ'><q id='AovaJ'><span id='AovaJ'><b id='AovaJ'><form id='AovaJ'><ins id='AovaJ'></ins><ul id='AovaJ'></ul><sub id='AovaJ'></sub></form><legend id='AovaJ'></legend><bdo id='AovaJ'><pre id='AovaJ'><center id='AovaJ'></center></pre></bdo></b><th id='AovaJ'></th></span></q></dt></tr></i><div id='AovaJ'><tfoot id='AovaJ'></tfoot><dl id='AovaJ'><fieldset id='AovaJ'></fieldset></dl></div>
              <bdo id='AovaJ'></bdo><ul id='AovaJ'></ul>
            • <legend id='AovaJ'><style id='AovaJ'><dir id='AovaJ'><q id='AovaJ'></q></dir></style></legend>

              <tfoot id='AovaJ'></tfoot>

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

                  本文介绍了如何在 TestNG 报告中包含 Log4j2 消息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我希望在所有测试用例的 TestNG 报告中提供 Log4j2 日志记录信息.

                  I would like to have the Log4j2 logging information available in the TestNG reports for all of the test cases.

                  TestNG 使用一个名为 Reporter.java 的特殊记录器类,它跟踪日志输出并将其保存在其结果 XML 中.

                  TestNG uses a special logger class called Reporter.java that keeps track of the log output and saves it in its results XML.

                  在 log4j 中,可以简单地创建一个路由到 Reporter 并注册它的 appender 实现.

                  In log4j it was possible to simply create an appender implementation that routes to Reporter and register it.

                  使用 Log4j2 中的新 Logger API,很难找到有关如何完成此操作的信息.我有一些信息可以使用 Log4j 而不是使用 Log4j2 来完成.

                  With the new Logger API in Log4j2 it has been difficult to find information on how to accomplish this. I have some information to get this done using Log4j but not with Log4j2.

                  推荐答案

                  据我所知,你只需要实现一个简单的 Appender.比如:

                  From what I can tell you just need to implement a simple Appender. Something like:

                  @Plugin(name="Reporter", category ="Core", elementType="appender", printObject=true)
                  public class ReporterAppender extends AbstractAppender {
                  
                      private ReporterAppender(final String name, final Layout layout) {
                          super(name, null, layout, false);
                      }
                  
                      @Override
                      public void append(final LogEvent event) {
                          final Layout<? extends Serializable> layout = getLayout();
                          if (layout != null && layout instanceof AbstractStringLayout) {
                               Reporter.log(((AbstractStringLayout) layout).toSerializable(event));
                          } else {
                               Reporter.log(event.getMessage().getFormattedMessage();            }
                  
                      @PluginFactory
                      public static ReporterAppender createAppender(
                          @PluginAttribute("name") @Required(message = "A name for the Appender must be specified") final String name,
                          @PluginElement("Layout") Layout<? extends Serializable> layout) {
                          return new ReporterAppender(name, layout);
                      }
                  }
                  

                  这篇关于如何在 TestNG 报告中包含 Log4j2 消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:在 Selenium 中为每个元素使用多个定位器的优缺点 下一篇:Selenium - 完整的ajax加载自动滚动到页面底部

                  相关文章

                  最新文章

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

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

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

                    1. <tfoot id='KLw8j'></tfoot>