我已经设置好配置文件
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/>
</configSections>
<nlog autoReload="true">
<targets>
<target name="file" type="File" fileName="${basedir}/log/${shortdate}.log" layout="${date:format=HH\:mm\:ss.fff}|${message}"/>
<target name="file_webs" type="File" fileName="${basedir}/log/${shortdate}_webs.log" layout="${date:format=HH\:mm\:ss.fff}|${message}"/>
</targets>
<rules>
<logger name="WebSocket.*" minlevel="Debug" writeTo="file_webs" final="true"/>
<logger name="*" minlevel="Debug" writeTo="file" />
</rules>
</nlog>
</configuration>
记录器在每个类中的加载方式如下:
private static Logger logger = LogManager.GetCurrentClassLogger();
只要我不运行构建版本,日志就会定向到正确的文件。然后,所有日志记录都在默认日志文件中完成。 可能是什么原因?
答案 0 :(得分:2)
检查以下内容:
private static Logger logger = LogManager.GetLogger("WebSocket.*");