强制 NLog 为年、月、日创建新的日志文件夹

发布于 2024-11-23 16:40:08 字数 179 浏览 0 评论 0原文

如何强制 NLog 使用此模式写入日志文件 "${yyyy}/${MM}/${dd}/log${yyMMdd}.${####}.txt"

为每年、月、日创建一个新目录,文件名包含时间和运行数字(4 位宽),例如如果文件大小超出(之前)log192412.0001.txt新的一天开始了)。

How can I force NLog to write logfiles using this pattern "${yyyy}/${MM}/${dd}/log${yyMMdd}.${####}.txt"?

Create a new directory for each year, month, day and have the filenames contain the time and a running nummer (4 digits wide), for example log192412.0001.txt if a file size is exceeded (before a new day starts).

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

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

发布评论

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

评论(1

血之狂魔 2024-11-30 16:40:08

我自己找到的:

<target xsi:type="File" name="fileTarget" 
  fileName="${basedir}/${date:format=yyyy}/${date:format=MM}/${date:format=dd}/log${date:format=yyMMdd}.log"
  archiveFileName="${basedir}/${date:format=yyyy}/${date:format=MM}/${date:format=dd}/log${date:format=yyMMdd}.{####}.log"
  archiveAboveSize="1000000" /> 

Found it myself:

<target xsi:type="File" name="fileTarget" 
  fileName="${basedir}/${date:format=yyyy}/${date:format=MM}/${date:format=dd}/log${date:format=yyMMdd}.log"
  archiveFileName="${basedir}/${date:format=yyyy}/${date:format=MM}/${date:format=dd}/log${date:format=yyMMdd}.{####}.log"
  archiveAboveSize="1000000" /> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文