如何在调用LogManager.shutdown()后重启log4j2?

时间:2017-09-05 04:22:57

标签: log4j2

我有一个方法来重新配置log4j2,如下所示:

LogManager.shutdown(); // SHUTDOWN log4j2
    InputStream in = getClass().getResourceAsStream("/my2ndLog4j2.xml");
    ConfigurationSource source = new ConfigurationSource(in);
    Configurator.initialize(null, source);
    LoggerContext context = (LoggerContext) LogManager.getContext(false);
    context.reconfigure();
    context.start(); // NOT WORK, no log appear anymore...

所以我可以在运行时重新配置生产日志配置和开发配置之间的log4j2,但是当我调用LogManager.shutdown()时,它真的非常SHUTDOWN,永远不会回来,context.start()不起作用,事实上我这样做在log4j1.x中很长一段时间,在log4j1.x中,使用:

org.apache.log4j.PropertyConfigurator.configure(cfgPath);

然后它回来了,但log4j2怎么样?

1 个答案:

答案 0 :(得分:3)

如果要在运行时更改.loc配置文件,那么下面的代码就足够了 -

log4j2

无需关闭Configurator.initialize(null, "my2ndLog4j2.properties"); 然后重新启动它。