log4net 文件扩展名
我正在开发一个广泛使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来日志被配置为使用 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