未创建日志。 我的配置文件中有什么问题。我查看了很多讨论论坛但是帮助我。请帮我。以下是代码
先谢谢
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
internalLogToConsole="true"
autoReload="true"
throwExceptions="false"
internalLogLevel="Off">
<targets async="true">
<target name="logfile" xsi:type="File"
fileName="c:\Log\${cached:cached=true:inner=${date:format=yyyy-MM-dd HH-mm}}.txt"
layout="${longdate}|${level:uppercase=true}|${logger} [${threadid}] | [${event-context:item=transactionId}] - ${message} ${newline}"
keepFileOpen="false"
archiveAboveSize="10240000"
encoding="iso-8859-2"/>
</targets>
<rules>
<logger name="*" level="Info" writeTo="logfile"/>
</rules>
</nlog>