如何让 log4net 只保留最后 X 天的日志?

发布于 2024-07-27 01:29:50 字数 186 浏览 4 评论 0原文

我只希望 log4net 保留 10 天的日志文件,因为让它们无限增长最终会耗尽我的磁盘空间。 我原以为我可以通过设置

<maxSizeRollBackups value="10" />

RollingFileAppender 来做到这一点,但没有骰子。 我该怎么做呢?

I only want log4net to keep let's say 10 days-worth of log files as keeping them growing indefinitely will eventually eat up my disk space. I had thought that I could do this by setting

<maxSizeRollBackups value="10" />

on my RollingFileAppender but no dice. How do I do this?

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

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

发布评论

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

评论(2

眉黛浅 2024-08-03 01:29:50

看看这个类似的帖子答案。

确保您没有按照 SDK

备份文件的最大数量
在日期/时间边界上滚动不是
支持。

Take a look at this similar post for answers.

Make sure you are not rolling the logs by Date as per the SDK:

A maximum number of backup files when
rolling on date/time boundaries is not
supported.

幽梦紫曦~ 2024-08-03 01:29:50

这正是我正在寻找的。

也许这会有帮助?

<appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender">
<file value="logfile" />
<appendToFile value="true" />
<rollingStyle value="Composite" />
<datePattern value="yyyyMMdd" />
<maxSizeRollBackups value="10" />
<layout type="log4net.Layout.PatternLayout">
    <conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline" />
</layout>

This is what exactly I am looking for.

Maybe this will help?

<appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender">
<file value="logfile" />
<appendToFile value="true" />
<rollingStyle value="Composite" />
<datePattern value="yyyyMMdd" />
<maxSizeRollBackups value="10" />
<layout type="log4net.Layout.PatternLayout">
    <conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline" />
</layout>

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