zoukankan      html  css  js  c++  java
  • NLog配置分享

    新建一个文件命名为NLog.Config,然后添加如下代码

    <?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">
    
      <targets>
        <target name="asyncFile" xsi:type="AsyncWrapper">
          <target name="log_file" xsi:type="File"
                  fileName="${basedir}/Logs/${shortdate}/${shortdate}.txt"
                  layout="${longdate} | ${message} ${onexception:${exception:format=message} ${newline} ${stacktrace} ${newline}"
                  archiveFileName="${basedir}/archives/${shortdate}-{#####}.txt"
                  archiveAboveSize="102400"
                  archiveNumbering="Sequence"
                  concurrentWrites="true"
                  keepFileOpen="false" />
        </target>
        <target name="console" xsi:type="ColoredConsole" layout="[${date:format=HH:mm:ss}]:${message} ${exception:format=message}" />
      </targets>
    
      <rules>
        <logger name="*" minlevel="Error" writeTo="asyncFile" />
        <logger name="*" minlevel="Debug" writeTo="console" />
      </rules>
    </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">
    
      <variable name="logLayout"
                value="Logger:${logger}${newline}Date:${longdate} Level:${uppercase:${level}}${newline}Message:${message} ${newline}${onexception:Exception:${exception:format=toString}${newline}}" />
    
      <targets>
        <target name="asyncFile" xsi:type="AsyncWrapper">
          <target name="log_file" xsi:type="File"
                  fileName="${basedir}/Logs/${shortdate}/${shortdate}.txt"
                  layout="${logLayout}"
                  archiveFileName="${basedir}/archives/${shortdate}-{#####}.txt"
                  archiveAboveSize="102400"
                  archiveNumbering="Sequence"
                  concurrentWrites="false"
                  keepFileOpen="true" 
                  encoding="utf-8"
                  openFileCacheTimeout="30"/>
        </target>
      </targets>
    
      <rules>
        <logger name="*" minlevel="Info" writeTo="asyncFile" />
      </rules>
    </nlog>
    
  • 相关阅读:
    JVM的学习5_____垃圾回收:分代收集算法
    JVM的学习4____GC的作用和垃圾的标记
    JVM的学习3_____逃逸分析与栈上分配
    JVM的学习2____对象实例的内存分配原理
    JVM的学习1_____内存模型
    SpringMVC的学习____6.JSON 和Ajax
    两种方法关联控制器和DOM
    img的src,a的href使用{{}}设置属性不能生效
    ng之{{value}}顺序
    ng之ng-app指令
  • 原文地址:https://www.cnblogs.com/stulzq/p/8504860.html
Copyright © 2011-2022 走看看