我尝试使用设置测试 NLog 性能(最新版本):
<?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" autoReload="true">
<variable name="basePath" value="c:\logs\" />
<variable name="msgFormat" value="${message}" />
<targets async="true">
<target name="file"
xsi:type="File"
fileName="${basePath}/${logger}/${date:format=yyyy}/${date:format=MMMM}/log-${date:format=yyMMdd}-${level}.log"
layout="${msgFormat}"
concurrentWrites="true" />
</targets>
<rules>
<logger name="*" minlevel="Debug" writeTo="file"/>
</rules>
</nlog>
并运行此代码:
var msg = "this is example string for logging test. it's not very long, but not very short";
var count = 20000;
Parallel.For(0, count, x => nlog.Info(msg));
NLog 写入文件,但当文件大小达到 1MB 时,它会停止写入。我尝试使用简单的for
循环,但它对我没有帮助。而且我尝试使用内部日志记录,但没有错误,顺便说一句,我在那里看到了这个字符串:
2013-04-01 11:36:18.2458 跟踪打开 c:\logs/NLogTest/2013/April/log-130401-Info.log 与 concurrentWrite=False
很奇怪,因为concurrentWrites默认值是true
,而且我已经在 config.xml 中设置了这个值。