Logback,设置每天最大历史文件数

发布于 12-12 05:51 字数 311 浏览 0 评论 0原文

我使用 TimeBasedRollingPolicySizeAndTimeBasedFNATP 触发策略进行 logback 配置。日志文件的滚动设置为每天发生,并且如果日志文件大小超出限制也会触发。

如果我在 TimeBasedRollingPolicy 上执行 setMaxHistory(10) 并每日滚动,那么它将归档过去 10 天内的所有日志文件。但我想要的是每天在 SizeAndTimeBasedFNATP 上设置 maxHIstory 。

这可以通过 logback 实现吗?

I use TimeBasedRollingPolicy and SizeAndTimeBasedFNATP triggering policy for my logback configuration. The rollover of log files is set to happen every day and it will also be triggered if log file size goes beyond a limit.

If I do setMaxHistory(10) on TimeBasedRollingPolicy with a daily roll over, then it will archive all log files in last 10 days. But what I want is to set maxHIstory on SizeAndTimeBasedFNATP each day.

Is this possible with logback?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北渚2024-12-19 05:51:11

当 SizeAndTimeBasedFNATP 和 MaxHistory 设置为 10 时,超过 10 天的日志将被删除(假设每日滚动计划)。大小不计入删除逻辑中。

With SizeAndTimeBasedFNATP and MaxHistory set to 10, the logs older than 10 days will be removed (assuming daily rollover schedule). Size is not factored in the into removal logic.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文