我已经按照这里的示例并在我的 IIS 中定义了一个基于时间的文件存档,如下所示
<nlog autoReload="true" throwExceptions="true" >
<targets async="true">
<target name="file" type="File"
layout="${longdate} ${logger} ${message}"
fileName="${basedir}/logs/logfile.txt"
archiveFileName="${basedir}/logs/archives/log.{#}.${longdate}.txt"
archiveEvery="Day"
archiveNumbering="Rolling"
maxArchiveFiles="31"
concurrentWrites="true"
keepFileOpen="false"
encoding="iso-8859-2" />
</targets>
<rules>
<logger name="*" minlevel="Trace" writeTo="file" />
</rules>
虽然我已经创建了文件夹 - 文件没有存档。有任何想法吗?