log4net 文件扩展名

发布于 2024-07-29 23:22:11 字数 111 浏览 5 评论 0原文

我正在开发一个广泛使用 log4net 的应用程序。 我注意到,一旦日志文件变大,它就会以 .log、.log.1、.log.2、.log.3 等开头。 我如何让它只说 .log 而不是 .log.X 。

I am working on an application which uses log4net extensivly. I have noticed that once the log file gets to big it starts out with .log, .log.1 , .log.2 , .log.3 , and so on. How do i get it to just say .log and not .log.X .

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

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

发布评论

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

评论(1

扬花落满肩 2024-08-05 23:22:11

看起来日志被配置为使用 RollingFileAppender。 这会保留日志文件,直到达到配置的最大大小。 日志以 .1、.2 等扩展名保存,并创建一个新的。

如果您只想继续追加,请尝试查看 FileAppender。

这是一些配置示例的链接。
http://logging.apache.org/log4net/release/config-examples。 html

It looks like the log is configured to use a RollingFileAppender. That keeps log files until a configured maximum size is hit. The log is saved with the .1, .2, etc. extensions and a new one is created.

If you want to just keep appending, try looking at the FileAppender.

Here's a link to some config examples.
http://logging.apache.org/log4net/release/config-examples.html

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