常用NLog配置

Posted zhaotianff

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用NLog配置相关的知识,希望对你有一定的参考价值。

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
   
    <configSections>
      <section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/>
    </configSections>
  
    <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <targets>
        <target name="file" xsi:type="File"
            layout="${longdate} ${logger} ${message}${exception:format=ToString}"
            fileName="${basedir}/logs/${shortdate}.log"
            keepFileOpen="true"
            encoding="utf-8" />
        <target name="f1" xsi:type="File" fileName="file1.txt"/>
        <!--layout代表日志的格式-->
        <target name="f2" xsi:type="File" fileName="file2.txt" layout="${date:format=yyyyMMddHHmmss} ${callsite} ${level} ${message}"/>
        <target name="n1" xsi:type="Network" address="tcp://localhost:4001"/>
        <target name="ds" xsi:type="OutputDebugString"/>
      </targets>

      <rules>
        <!--writeTo使用哪个target-->
        <logger name="*" minlevel="Debug" writeTo="f2" />
        <logger name="mylog" minlevel="Debug" writeTo="f1" />
        <logger name="test" levels="Debug,Error" writeTo="n1"/>
      </rules>
    </nlog>


  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
  </startup>

</configuration>

直接复制 ,更改writeTo属性就 可以 使用。

以上是关于常用NLog配置的主要内容,如果未能解决你的问题,请参考以下文章

封装一个基于NLog+NLog.Mongo的日志记录工具类LogUtil

配置 VScode 编辑器 (前端篇)

[AndroidStudio]_[初级]_[配置自动完成的代码片段]

[AndroidStudio]_[初级]_[配置自动完成的代码片段]

[AndroidStudio]_[初级]_[配置自动完成的代码片段]

如何使用 NLog 记录到多个目标?