如何使用log4j2公共日志网桥

2022-04-12 00:00:00 logging java log4j log4j2 apache-commons

我想将log4j2 Commons Logging Bridge与Commons 1.2一起使用。我尝试使用如下内容:

import org.apache.logging.log4j.jcl.LogFactoryImpl;

public class MyClass{

    private static Log log = LogFactoryImpl.getLog(DropinsBundleDeployer.class);
         .
         .
         .
    log.error("Error occured", e);
}

但是当我运行代码时,我遇到了以下问题,并且看不到任何日志:

log4j:WARN Please initialize the log4j system properly.
但是,log4j2.xml文件位于类路径中。 如何正确使用带有log4j2的Commons Logging 1.2?


解决方案

您可能需要查看which jars you need上的常见问题解答页面。

类路径上需要以下JAR:

  • log4j-api-2.2
  • log4j-core-2.2
  • log4j-JCL-2.2
  • 公共日志记录

还请确保您的类路径中的log4j-1.2不是。该错误消息看起来像是log4j-1.2错误...

相关文章