C#快速配置NLog日志的教程详解

 更新时间:2024年02月20日 10:43:10   作者:搬砖的诗人Z  
这篇文章主要为大家详细介绍了C#快速配置NLog日志的教程相关知识,文中的示例代码讲解详细,具有一定的借鉴价值,感兴趣的小伙伴可以了解一下

首先我们需要在Nuget中安装Nlog和Nlog-Schema。

添加配置文件: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"
      xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd"
      autoReload="true"
      throwExceptions="false"
      internalLogLevel="Off"
      internalLogFile="d:\nlog\nlog-internal.log">

  <!-- optional, add some variables
  https://github.com/nlog/NLog/wiki/Configuration-file#variables
  -->
  <!--<variable name="myvar" value="myvalue"/>-->

  <variable name="logDir" value="${basedir}/nlog"/>
  <variable name="logFileName" value="${date:format=yyyyMMdd}.txt"/>
  <variable name="logArchiveFileName" value="${date:format=yyyyMMdd}_{#}.txt"/>
  <variable name="logLayout" value="${date:format=yyyy-MM-dd HH\:mm\:ss.fff} [${level}] ${message}"/>

  <!--
  See https://github.com/nlog/nlog/wiki/Configuration-file
  for information on customizing logging rules and outputs.
   -->

  <targets>

    <!--
    add your targets here
    See https://github.com/nlog/NLog/wiki/Targets for possible targets.
    See https://github.com/nlog/NLog/wiki/Layout-Renderers for the possible layout renderers.
    -->

    <!--
    Write events to a file with the date in the filename.
    <target xsi:type="File" name="f" fileName="${basedir}/logs/${shortdate}.log"
            layout="${longdate} ${uppercase:${level}} ${message}" />
    -->

    <target xsi:type="File" name="info"
            layout="${logLayout}"
            fileName="${logDir}/info/${logFileName}"
            archiveFileName="${logDir}/info/${logArchiveFileName}"
            archiveAboveSize="10485760"
            archiveNumbering="Sequence"
            maxArchiveFiles="100"
            concurrentWrites="true"
            keepFileOpen="true"
            openFileCacheTimeout="30"
            encoding="UTF-8" />

    <target xsi:type="File" name="debug"
            layout="${logLayout}"
            fileName="${logDir}/debug/${logFileName}"
            archiveFileName="${logDir}/debug/${logArchiveFileName}"
            archiveAboveSize="10485760"
            archiveNumbering="Sequence"
            maxArchiveFiles="100"
            concurrentWrites="true"
            keepFileOpen="true"
            openFileCacheTimeout="30"
            encoding="UTF-8" />

    <target xsi:type="File" name="error"
            layout="${logLayout}"
            fileName="${logDir}/error/${logFileName}"
            archiveFileName="${logDir}/error/${logArchiveFileName}"
            archiveAboveSize="10485760"
            archiveNumbering="Sequence"
            maxArchiveFiles="100"
            concurrentWrites="true"
            keepFileOpen="true"
            openFileCacheTimeout="30"
            encoding="UTF-8" />

    <target xsi:type="File" name="warn"
        layout="${logLayout}"
        fileName="${logDir}/warn/${logFileName}"
        archiveFileName="${logDir}/warn/${logArchiveFileName}"
        archiveAboveSize="10485760"
        archiveNumbering="Sequence"
        maxArchiveFiles="100"
        concurrentWrites="true"
        keepFileOpen="true"
        openFileCacheTimeout="30"
        encoding="UTF-8" />

  </targets>

  <rules>
    <!-- add your logging rules here -->

    <!--
    Write all events with minimal level of Debug (So Debug, Info, Warn, Error and Fatal, but not Trace)  to "f"
    <logger name="*" minlevel="Debug" writeTo="f" />
    -->

    <logger name="*" minlevel="Info" maxlevel="Info" writeTo="info" />

    <logger name="*" minlevel="Debug" maxlevel="Debug" writeTo="debug" />

    <logger name="*" minlevel="Error" maxlevel="Error" writeTo="error" />

    <logger name="*" minlevel="Warn" maxlevel="Warn" writeTo="warn" />

  </rules>
</nlog>

定义了5种log类型Debug,Info,Debug,Error,Warn,详细配置可以自己定义。

定义一个常用的log类

  public class NLogHelper
  {
      private static Logger _log = NLog.LogManager.GetCurrentClassLogger();

      /// <summary>
      /// Debug日志
      /// </summary>
      /// <param name="log"></param>
      public static void Debug(string log)
      {
          _log.Debug(log);
      }

      /// <summary>
      /// Error日志
      /// </summary>
      /// <param name="log"></param>
      public static void Error(string log)
      {
          _log.Error(log);
      }

      /// <summary>
      /// Warn日志
      /// </summary>
      /// <param name="log"></param>
      public static void Warn(string log)
      {
          _log.Warn(log);
      }

      /// <summary>
      /// Info日志
      /// </summary>
      /// <param name="log"></param>
      public static void Info(string log)
      {
          _log.Info(log);
      }

      /// <summary>
      /// 详细异常日志
      /// </summary>
      /// <param name="ex"></param>
      public static void Exception_Error(Exception ex)
      {
          try
          {
              if (ex != null)
              {
                  StringBuilder strBuilder = new StringBuilder();
                  strBuilder.Append("【异常日志消息】");
                  strBuilder.AppendLine(ex.Message);
                  strBuilder.Append("【异常日志Trace】");
                  strBuilder.AppendLine(ex.StackTrace);
                  strBuilder.Append("【异常日志全部】");
                  strBuilder.Append(ex.ToString());
                  _log.Error(strBuilder.ToString());
              }
          }
          catch (Exception)
          {
          }
      }
  }

调用代码

   NLogHelper.Info($"系统正在运行中...");

到此这篇关于C#快速配置NLog日志的教程详解的文章就介绍到这了,更多相关C#配置NLog日志内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:

相关文章

  • 基于C# wpf实现桌面放大镜

    基于C# wpf实现桌面放大镜

    做桌面截屏功能时需要放大镜,显示鼠标所在位置的放大图像,所以本文为大家介绍了如何基于C# wpf实现桌面放大镜功能,有需要的小伙伴可以参考下
    2023-09-09
  • 详解C#正则表达式Regex常用匹配

    详解C#正则表达式Regex常用匹配

    这篇文章主要介绍了C#正则表达式Regex常用匹配,利用Regex类实现验证,感兴趣的小伙伴们可以参考一下
    2015-12-12
  • 使用策略模式实现报警服务示例详解(短信报警)

    使用策略模式实现报警服务示例详解(短信报警)

    服务的功能:这个服务就是能够实现多通路报警的服务,比如邮件报警、客户端报警、短信报警等,该服务灵活性还不错,比较方便扩展
    2014-01-01
  • C# Winform消息通知之系统本地通知local toast notification

    C# Winform消息通知之系统本地通知local toast notification

    这篇文章主要为大家介绍了C# Winform消息通知之系统本地通知local toast notification使用详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-08-08
  • 关于WPF异步MVVM等待窗体的介绍

    关于WPF异步MVVM等待窗体的介绍

    本篇文章小编将为大家介绍,关于WPF异步MVVM等待窗体的介绍,需要的朋友参考下
    2013-04-04
  • C#实现员工ID卡的识别功能

    C#实现员工ID卡的识别功能

    这篇文章主要为大家详细介绍了C#如何实现识别员工ID卡的功能,文中的示例代码讲解详细,对我们学习C#有一定的帮助,感兴趣的小伙伴可以跟随小编一起了解一下
    2023-01-01
  • c# 使用WebRequest实现多文件上传

    c# 使用WebRequest实现多文件上传

    这篇文章主要介绍了c# 使用WebRequest实现多文件上传的方法,帮助大家更好的理解和学习使用c#,感兴趣的朋友可以了解下
    2021-03-03
  • C#枚举类型与结构类型实例解析

    C#枚举类型与结构类型实例解析

    这篇文章主要介绍了C#枚举类型与结构类型实例,需要的朋友可以参考下
    2014-07-07
  • 深入理解C#中foreach遍历的使用方法

    深入理解C#中foreach遍历的使用方法

    在c#中通过foreach遍历一个列表是经常拿用的方法,使用起来也方便,下面这篇文章先给大家介绍了关于C#中foreach遍历的使用方法,后面介绍了c#使用foreach注意的一些是,文中通过示例代码介绍的非常详细,对大家具有一定的参考学习价值,需要的朋友们下面来一起看看吧。
    2017-08-08
  • 老生常谈C# 中的 StreamReader 和 StreamWriter 类

    老生常谈C# 中的 StreamReader 和 StreamWriter 类

    这篇文章主要介绍了老生常谈C# 中的 StreamReader 和 StreamWriter 类,StreamReader 和 StreamWriter 位于 System.IO 命名空间中,当您想要读取或写入基于字符的数据时,这两个类都很有用,需要的朋友可以参考下
    2024-06-06

最新评论