nlog からウィンドウのイベント ログにログを書き込もうとしています。これが私の構成です
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" >
<targets>
<target name="eventLog" xsi:type="EventLog" layout="${longdate} [${level:upperCase=true}] : ${message} ${exception:format=ToString}" log="Application" source="mySource"/>
</targets>
<rules>
<logger name="*" minlevel="Debug" writeTo="eventLog"/>
</rules>
</nlog>
イベントログのログをレベルで区別する必要があります。個別Error
のCritical
レベルのログが必要ですが、次の行があります。
logger.Error("error test do eventLogu");
logger.Fatal("fatal test do eventLogu");
どちらもレベル付きのイベント ログに書き込みError
ます。
nlog を使用して Critical レベルのログを書き込むことはできますか?