ロギングフレームワークとしてNlogを使用していますが、ファイルを希望どおりにアーカイブする方法が見つかりません。ロギングが行われた日付をロギングファイル名に入れたいのですが。
Ex 2009-10-01 00:00 -> 2009-10-01:23:59
から発生したすべてのログはLog.2009-10-01.log
に配置する必要があります。ただし、この日のすべてのログは、テーリングなどのためにLog.log
に配置する必要があります。
私が使用している現在のNLog.configは次のようになります。
<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" >
<extensions>
<add Assembly="My.Awesome.LoggingExentions"/>
</extensions>
<targets>
<target name="file1" xsi:type="File"
fileName="${basedir}/Logs/Log.log"
layout="${longdate} ${level:uppercase=true:padding=5} ${session} ${storeid} ${msisdn} - ${logger:shortName=true} - ${message} ${exception:format=tostring}"
archiveEvery="Day"
archiveFileName="${basedir}/Logs/Log${shortdate}-{#}.log"
archiveNumbering="Sequence"
maxArchiveFiles="99999"
keepFileOpen="true"
/>
</targets>
<rules>
<logger name="*" minlevel="Trace" writeTo="file1" />
</rules>
</nlog>
ただし、これにより、ログファイルの日付が新しいログファイルが作成された日付に設定されます。後でログを読みたいときにフラストレーションを引き起こします。
また、archiveFileNameに少なくとも1つ必要なようですが、そうではありません。だから、もしあなたがその解決策を手に入れたら、私も2倍感謝するでしょう=)
誰かがまだ解決策を必要としている場合に備えて-要求された機能が最近NLogに追加されました: https://github.com/NLog/NLog/pull/241 、しかしそれはまだ利用できませんNuget
おそらく手遅れですが、あなたがする必要があるのは、 日付レイアウトレンダラー と適切な 日付形式 を使用してファイル名に日付を含めることだけだと思います。日付を含めることで、アーカイブ機能を指定する必要がなくなります。日付が変わると、新しいファイルが自動的に作成されます。
<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" >
<extensions>
<add Assembly="My.Awesome.LoggingExentions"/>
</extensions>
<targets>
<target name="file1" xsi:type="File"
fileName="${basedir}/Logs/${date:format=yyyy-MM-dd}.log"
layout="${longdate} ${level:uppercase=true:padding=5} ${session} ${storeid} ${msisdn} - ${logger:shortName=true} - ${message} ${exception:format=tostring}"
keepFileOpen="true"
/>
</targets>
<rules>
<logger name="*" minlevel="Trace" writeTo="file1" />
</rules>
</nlog>
多分これはあなたが必要とするものです、その中にファイルLog.logがあるDailyフォルダ
<target xsi:type="File" name="file1" fileName="${basedir}/logs/Log.log"
layout="${longdate} ${uppercase:${level}} ${message}" />
</targets>