文件名中包含日期

文件名中包含日期

本文介绍了Log4net 滚动每日文件名,文件名中包含日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想要命名的文件,例如:

I would like to have files named for example:

dd.mm.yyyy.log

dd.mm.yyyy.log

log4net 怎么可能做到这一点?

How is this possible with log4net?

推荐答案

在您的 Log4net 配置文件中,将以下参数与 RollingFileAppender 一起使用:

In your Log4net config file, use the following parameter with the RollingFileAppender:

<param name="DatePattern" value="dd.MM.yyyy'.log'" />

这篇关于Log4net 滚动每日文件名,文件名中包含日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 13:26