我正在使用log4j 2.6.2测试Log4j RollingFileAppender。
我想每分钟轮换一次日志,所以我有一个log4j2.xml非常类似于这里https://logging.apache.org/log4j/2.x/manual/appenders.html#RollingFileAppender的一个例子。 这是我的log4j2.xml
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="warn" name="testlog4j2" packages="">
<Properties>
<Property name="baseDir">C:/tmp/testlog4</Property>
</Properties>
<Appenders>
<RollingFile name="RollingFile" fileName="${baseDir}/app.log"
filePattern="${baseDir}/$${date:yyyy-MM}/app-%d{yyyy-MM-dd-HH-mm}.log.gz">
<PatternLayout pattern="%d %p %c{1.} [%t] %m%n" />
<CronTriggeringPolicy schedule="0 0/1 * * * ?"/>
<DefaultRolloverStrategy>
<Delete basePath="${baseDir}" maxDepth="2">
<IfFileName glob="*/app-*.log.gz" />
<IfLastModified age="60d" />
</Delete>
</DefaultRolloverStrategy>
</RollingFile>
</Appenders>
<Loggers>
<Root level="ALL">
<AppenderRef ref="RollingFile"/>
</Root>
</Loggers>
</Configuration>
这是一个我每秒都写一个日志的应用程序。
package testlog4j2;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
public class TestLog4j {
private final static Logger logger = LogManager.getLogger(TestLog4j.class);
public static void main(String[] args) {
try {
for (int i=1; i<=240; i++) {
logger.info("Hello");
Thread.sleep(1*1000);
}
} catch (Exception e) {
//e.printStackTrace();
logger.error("Excepcion general", e);
}
}
}
会发生什么:
一旦系统在第一分钟旋转日志,就会出现像这样的连续错误
2016-07-28 15:10:02,015 Log4j2-Log4j2Scheduled-1 ERROR无法将文件C:\ tmp \ testlog4 \ 2016-07 \ app-2016-07-28-15-10.log.gz移动到C:\ tmp \ testlog4 \ 2016-07 \ app-2016-07-28-15-10.log.gz:java.nio.file.NoSuchFileException C:\ tmp \ testlog4 \ 2016-07 \ app-2016-07 -28-15-10.log.gz - &gt; C:\ TMP \ testlog4 \ 2016-07 \ APP-2016-07-28-15-10.log.gz
每分钟都没有gz
我做错了什么?
由于
答案 0 :(得分:1)
您可能发现了一个错误。请在Jira issue tracker上提出错误报告,其中包含您在此处描述的所有详细信息。
答案 1 :(得分:0)
现在它似乎与TimeBasedTriggeringPolicy而不是CronTriggeringPolicy一起使用。
我的conf现在看起来像这样
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="warn" name="testlog4j2" packages="">
<Properties>
<Property name="baseDir">C:/tmp/testlog4</Property>
</Properties>
<Appenders>
<RollingFile name="RollingFile" fileName="${baseDir}/app.log"
filePattern="${baseDir}/app-%d{yyyy-MM-dd-HH-mm}.log">
<PatternLayout pattern="%d %p %c{1.} [%t] %m%n" />
<!--
<CronTriggeringPolicy schedule="0 0 0 * * ?"/>
-->
<!--
<CronTriggeringPolicy schedule="0 0/1 * * * ?"/>
-->
<TimeBasedTriggeringPolicy interval="1"/><!-- como el filePattern tiene como unidad minima el minuto, se hara cada 1 minutos -->
<DefaultRolloverStrategy>
<Delete basePath="${baseDir}" maxDepth="0">
<IfFileName glob="*/app-*.log" />
<IfLastModified age="2M" />
</Delete>
</DefaultRolloverStrategy>
</RollingFile>
</Appenders>
<Loggers>
<Root level="ALL">
<AppenderRef ref="RollingFile"/>
</Root>
</Loggers>
</Configuration>
删除目前无法正常使用,但这是我接下来要调查的另一个故事。
祝你好运