在log4j
中,有一个功能configureAndWatch
(如下所述),其中在不重新启动应用程序服务器的情况下,可以使用默认延迟来修改日志阈值级别。
org.apache.log4j.xml.DOMConfigurator.configureAndWatch(log4j.xml path);
在
log4j2
中也可能吗?如果是,那如何实现呢?另外,以下是用于设置和清理
log4j
设置的代码行。BasicConfigurator.configure()
BasicConfigurator.resetConfiguration()
如何在
log4j2
中实现呢?请帮忙。谢谢。 最佳答案
根据Log4j2文档
https://logging.apache.org/log4j/2.x/manual/configuration.html
<?xml version="1.0" encoding="UTF-8"?>
<Configuration monitorInterval="30">
...
</Configuration>