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日志内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:

相关文章

  • WPF InkCanvas基本操作方法详解

    WPF InkCanvas基本操作方法详解

    这篇文章主要为大家详细介绍了WPF InkCanvas基本的操作方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-11-11
  • C# Dictionary的使用实例代码

    C# Dictionary的使用实例代码

    C# Dictionary的使用实例代码,需要的朋友可以参考一下
    2013-04-04
  • 详解C#调用matlab生成的dll库

    详解C#调用matlab生成的dll库

    这篇文章主要介绍了C#调用matlab生成的dll库,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2023-09-09
  • Unity3D实现导航效果

    Unity3D实现导航效果

    这篇文章主要为大家详细介绍了Unity3D实现简单导航效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-02-02
  • C#和JavaScript实现交互的方法

    C#和JavaScript实现交互的方法

    最近做一个小项目不可避免的需要前端脚本与后台进行交互。由于是在asp.net中实现,故问题演化成asp.net中jiavascript与后台c#如何进行交互。
    2015-05-05
  • c#创建浮动工具栏功能示例

    c#创建浮动工具栏功能示例

    这篇文章主要介绍了c#创建浮动工具栏功能示例,大家参考使用吧
    2013-12-12
  • C#实现简单获取扫码枪信息代码

    C#实现简单获取扫码枪信息代码

    本文给大家分享的是使用C#实现简单获取扫码枪信息代码,非常的简单实用,有需要的小伙伴可以参考下。
    2016-07-07
  • WPF实现3D粒子波浪效果

    WPF实现3D粒子波浪效果

    这篇文章主要为大家详细介绍了WPF实现3D粒子波浪效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-09-09
  • 一个C#开发者重温C++的心路历程

    一个C#开发者重温C++的心路历程

    作为一个C#开发为什么要重新学习C++呢?因为在C#在很多业务场景需要调用一些C++编写的COM组件,如果不了解C++,那么,很容易。。。注定是要被C++同事忽悠的
    2019-05-05
  • C#实现文件与Base64的相互转换

    C#实现文件与Base64的相互转换

    本文主要介绍了C#实现文件与Base64的相互转换,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2023-06-06

最新评论