.Net Core 使用Nlog 记录日志

一、使用Nlog将日志记录到TXT文本中

参考:https://www.cnblogs.com/qmhuang/p/8305915.html

  • 1、安装两个Nugget包:NLogNLog.Web.AspNetCore
    如下图:

    Nlog安装后的效果

  • 2、新建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"
          autoReload="true"
          internalLogLevel="Warn"
          internalLogFile="internal-nlog.txt">
      <!--define various log targets-->
      <targets>
        <!--write logs to file-->
        <target xsi:type="File" name="allfile" fileName="logs/all/nlog-all-${shortdate}.log"
                layout="${longdate}|${logger}|${uppercase:${level}}|${message} ${exception}" />
    
        <target xsi:type="File" name="ownFile-web" fileName="logs/my/nlog-my-${shortdate}.log"
                layout="${longdate}|${logger}|${uppercase:${level}}|${message} ${exception}" />
        <target xsi:type="Null" name="blackhole" />
      </targets>
      <rules>
        <!--All logs, including from Microsoft-->
        <logger name="*" minlevel="Trace" writeTo="allfile" />
    
        <!--Skip Microsoft logs and so log only own logs-->
        <logger name="Microsoft.*" minlevel="Trace" writeTo="blackhole" final="true" />
        <logger name="*" minlevel="Trace" writeTo="ownFile-web" />
      </rules>
    </nlog>
    
  • 3、修改Startup,注入Nlog和引入Nlog.Config

      // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
      public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
      {
          //使用NLog作为日志记录工具
          loggerFactory.AddNLog();
          //引入Nlog配置文件
          env.ConfigureNLog("nlog.config");
    
          if (env.IsDevelopment())
          {
              app.UseDeveloperExceptionPage();
          }
          else
          {
              app.UseHsts();
          }
    
          app.UseHttpsRedirection();
          app.UseMvc();
      }
    
  • 效果如下图:


    新增高亮部分的代码
  • 4、在接口中依赖Nlog,记录日志

      private ILogger<ValuesController> logger;
      //依赖Nlog
      public ValuesController(ILogger<ValuesController> _logger)
      {
          logger = _logger;
      }
    
    
      // GET api/values
      [HttpGet]
      public ActionResult<IEnumerable<string>> Get()
      {
          logger.LogError("自定义记录日志");//使用Nlog记录
    
          return new string[] { "value1", "value2" };
      }
    
使用说明
二、使用Nlog将日志记录到sql server数据库
  • 1、安装Nugget包:NLog.Web.AspNetCore
    效果如下:

    图片.png

  • 2、新建Nlog配置文件Nlog.Config,将如下内容放在文件里

新建完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"
            xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd"
            autoReload="true"
            throwExceptions="false"
            internalLogLevel="Warn"
            internalLogFile="Logs/nlog-internal.log">

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

        <!--
        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}" />
          -->

          <!-- write logs to file -->
          <target xsi:type="File" name="allfile" fileName="Logs/${date:format=yyyyMM}/nlog-all-${shortdate}.log"
                   layout="${longdate}|${event-properties:item=EventId.Id}|${uppercase:${level}}|${logger} ${newline}${message} ${exception} ${newline}" />

          <target xsi:type="File" name="ownFile-web" fileName="Logs/${date:format=yyyyMM}/nlog-own-${shortdate}.log"
                   layout="${longdate}|${event-properties:item=EventId.Id}|${uppercase:${level}}|${logger} ${newline}${message} ${exception} ${newline} --- |url: ${aspnet-request-url}|action: ${aspnet-mvc-action}" />

          <target xsi:type="Null" name="blackhole" />

          <target xsi:type="Database" name="error">
            <connectionString>${var:connectionString}</connectionString>
            <commandText>
              INSERT INTO [dbo].[Error]
              ([Application]
              ,[Level]
              ,[Logger]
              ,[Callsite]
              ,[RequestHeaders]
              ,[RequestBody]
              ,[RequestURL]
              ,[Response]
              ,[Referrerurl]
              ,[Action]
              ,[Message]
              ,[Exception]
              ,[Operatingtime]
              ,[ServerAddress]
              ,[RemoteAddress])
              VALUES
              (@application
              ,@levels
              ,@logger
              ,@callSite
              ,@requestHeaders
              ,@requestBody
              ,@requestURL
              ,@response
              ,@referrerurl
              ,@action
              ,@message
              ,@exception
              ,@operatingtime
              ,@serverAddress
              ,@remoteAddress);
            </commandText>
            <parameter name="@application" layout="BackendAPI" />
            <parameter name="@levels" layout="${level}" />
            <parameter name="@logger" layout="${logger}" />
            <parameter name="@callSite" layout="${callsite}" />
            <parameter name="@requestHeaders" layout="Null" />
            <parameter name="@requestBody" layout="${event-context:item=requestBody}" />
            <parameter name="@requesturl" layout="${aspnet-request-url}" />
            <parameter name="@response" layout="${event-context:item=response}" />
            <parameter name="@referrerurl" layout="${aspnet-request}" />
            <parameter name="@action" layout="${aspnet-mvc-action}" />
            <parameter name="@message" layout="${event-context:item=message}" />
            <parameter name="@exception" layout="${event-context:item=exception}" />
            <!--<parameter name="@exception" layout="${exception:tostring}" />-->
            <parameter name="@operatingTime" layout="${date}" />
            <parameter name="@serverAddress" layout="${machinename}" />
            <parameter name="@remoteAddress" layout="${aspnet-Request-IP}" />
          </target>


        </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" />
          -->

          <!--All logs, including from Microsoft-->
          <!--minlevel 改为Trace 跟踪全部 Error 只捕获异常-->
          <logger name="*" minlevel="Error" writeTo="allfile" />

          <!--Skip Microsoft logs and so log only own logs-->
          <logger name="Microsoft.*" minlevel="Trace" writeTo="blackhole" final="true" />
          <logger name="*" minlevel="Trace" writeTo="ownFile-web" />
          <logger name="*" minlevel="Error" writeTo="error" />


        </rules>
      </nlog>
  • 3、全局配置Nlog

  • Startup文件中添加配置

          NLog.LogManager.LoadConfiguration("Nlog.Config").GetCurrentClassLogger();
          NLog.LogManager.Configuration.Variables["connectionString"] = Configuration.GetConnectionString("Test");
    
  • Program文件中使用Nlog

    .UseNLog();
    

全部配置如下图:


全局配置Nlog

appsettings.json文件内容如下:

  {
    "ConnectionStrings": {
      "Test": "Server=.; Initial Catalog=TestDB; Persist Security Info=True; User ID=**; Password=***;"
    },
    "Logging": {
      "LogLevel": {
        "Default": "Warning"
      }
    },
    "AllowedHosts": "*"
  }
  • 4、使用方法

方法一:

private readonly Logger _logger = LogManager.GetCurrentClassLogger();
var logEventInfo = new LogEventInfo() { };
        logEventInfo.Properties["requestBody"] = "requestBody";
        logEventInfo.Properties["exception"] = "exception";
        logEventInfo.Properties["message"] = "context.Exception.Message";
        logEventInfo.Properties["response"] = "response.ToJSON()";

        _logger.Log(LogLevel.Error, logEventInfo);

方法二:

        NLog.Logger logger = LogManager.GetCurrentClassLogger();

        var logEventInfo = new LogEventInfo() { };
        logEventInfo.Properties["requestBody"] = "requestBody";
        logEventInfo.Properties["exception"] = "exception";
        logEventInfo.Properties["message"] = "context.Exception.Message";
        logEventInfo.Properties["response"] = "response.ToJSON()";

        //_logger.Log(LogLevel.Error, logEventInfo);
         logger.Log(LogLevel.Error, logEventInfo);
三、其他

LogCritical,用来记录严重的事情
LogDebug,记录调试信息
LogError,记录异常
LogInformation,记录信息性的事情
LogTrace,记录追踪信息
LogWarning,记录警告信息

下面是ASP.NET Core里面定义的LogLevel(它是个枚举), 按严重性从低到高排序的:

Trace = 0, 它可以包含敏感拘束, 默认在生产环境中它是被禁用掉的.

Debug = 1, 也是在调试使用, 应该在生产环境中禁用, 但是遇到问题需要调试可以临时启用.

Information = 2, 用来追踪应用程序的总体流程.

Warning = 3, 通常用于记录非正常或意外的事件, 也可以包括不会导致应用程序停止的错误和其他事件, 例如验证错误等.

Error = 4, 用于记录无法处理的错误和异常, 这些信息意味着当前的活动或操作发生了错误, 但不是应用程序级别的错误.

Critical = 5, 用于记录需要立即处理的事件, 例如数据丢失或磁盘空间不足.

None = 6, 如果你不想输出日志, 你可以把程序的最低日志级别设置为None, 此外还可以用来过滤日志.

非常有用的学习例子:https://www.cnblogs.com/bijinshan/p/9140111.html

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,126评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,254评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,445评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,185评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,178评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,970评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,276评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,927评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,400评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,883评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,997评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,646评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,213评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,204评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,423评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,423评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,722评论 2 345

推荐阅读更多精彩内容