本文介绍了如何使Logback每x分钟/5分钟/30分钟轮换一次日志文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道logback.xml很容易提供每天、每小时或每周轮换我的日志。如何配置fileNamePattern
中的时间戳以每半小时或‘x’分钟轮换日志?
推荐答案
您不需要更改代码。更改配置文件(logback.xml)就足够了。将附加器的配置更改为类似
<configuration>
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>logFile.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- daily rollover -->
<fileNamePattern>logFile.%d{yyyy-MM-dd}.log</fileNamePattern>
<!-- keep 30 days' worth of history capped at 3GB total size -->
<maxHistory>30</maxHistory>
<totalSizeCap>3GB</totalSizeCap>
</rollingPolicy>
<encoder>
<pattern>%-4relative [%thread] %-5level %logger{35} - %msg%n</pattern>
</encoder>
</appender>
<root level="DEBUG">
<appender-ref ref="FILE" />
</root>
</configuration>
有关详细信息,请参阅https://logback.qos.ch/manual/appenders.html。例如,使用日志文件。%d{yyyy-MM-dd_hh-mm}.log在每分钟开始时滚动。
这篇关于如何使Logback每x分钟/5分钟/30分钟轮换一次日志文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!