1. 程式人生 > 程式設計 >關於.Net 6 新增NLog的方法

關於.Net 6 新增NLog的方法

建立一個.Net 6 Demo專案

引入NLog包

關於.Net6新增NLog的方法

新增專案配置檔案nlog.config

<?xml version="1.0" encoding="utf-8"?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xsi:schemaLocation="NLog NLog.xsd"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      autoReload="true" >
    <!-- the targets to write to -->
    <targets>
        <!--單個檔案過大會導致寫入效率下降,可配置單個檔案的最大容量-->
        <target name="File" xsi:type="AsyncWrapper" queueLimit="5000" overflowAction="Discard">
            <target xsi:type="File"
                    fileName="${basedir}/logs/${shortdate}.log"
                    layout="${date:yyyy-MM-dd HH\:mm\:ss} ${level:uppercase=true} ${event-context:item=Action} ${message} ${event-context:item=Amount} ${stacktrace}"
                    archiveAboveSize="10240"
                    archiveEvery="Day"
                    />
        </target>
        <!-- write logs to file -->
        <!--<target xsi:type="File" name="logfile" fileName="c:\temp\console-example.log"
                layout="${longdate}|${level}|${message} |${all-event-properties} ${exception:format=tostring}" />-->
        <!--<target xsi:type="Console" name="logconsole"
                layout="${longdate}|${level}|${message} |${all-event-properties} ${exception:format=tostring}" />-->
    </targets>
    <!-- rules to map from logger name to target -->
    <rules>
        <!--<logger name="*" levels="Debug,Info,Warn,Error" writeTo="File" />-->
        <logger name="*" minlevel="Debug" maxlevel="Error" writeTo="File" />
    </rules>
</nlog>

lwww.cppcns.comayout佈局:

${longdate} 格式:2022-01-21 17:00:28.4860

關於.Net6新增NLog的方法

後面的毫秒不是我想要的,可以自定義:date:yyyy-MM-dd HH\:mm\:ss

關於.Net6新增NLog的方法

NLog等級

Trace:最常見的記錄資訊,一般是普通輸出

Debug:同樣是記錄資訊,出現的頻率比Trace少,一般是除錯程式

Info:資訊型別的訊息

Warn:警告訊息

Error:錯誤訊息

自上而下,等級遞增

指定特定等級:level="Warn"

指定多個等級:levels="Debug,Info" 以逗號分隔

指定等級範圍:minlevel="Info" maxlevel="Error"

<rules>
    <!--<logger name="*" levels="Debug,Error" writeTo="File" />-->
    <logger name="*" minlevel="Debug" maxlevel="Error" writeTo="File" />
</rules> 

新增工具類 Logger

using NLog;

namespace TestNet6.Utilities
{
    public class Logger
    {
        NLog.Logger _logger { get; set; }
        private Logger(NLog.Logger logger)
        {
            _logger = logger;
        }
        public Logger(string name) : this(LogManager.GetLogger(name))
        public static Logger Default { get; private set; }
        static Logger()
            Default = newQWGbyR
Logger(LogManager.GetCurrentClassLogger()); #region Dedub public void Debug(string msg,params object[] args) _logger.Debug(msg,args); public void Debug(string msg,Exception e) _logger.Debug(e,msg); #endregion #region Info public void Info(string msg,params object[] args) _logger.Info(msg,args); public void Info(string msg,Exception e) _logger.Info(e,msg); #region Trace public void Trace(string msg,params object[] args) _logger.Trace(msg,args); http://www.cppcns.com public void Trace(string msg,Exception e) _logger.Trace(e,msg); #region Warn public void Warn(string msg,params object[] args) _logger.Warn(msg,args); public void Warn(string msg,Exception e) _logger.Warn(e,msg); #region Error public void Error(string msg,params object[] args) _logger.Error(msg,args); public void Error(string msg,Exception e) _logger.Error(e,msg); } }

新增測試Controller

using Microsoft.AspNetCore.Mvc;
using TestNet6.Utilities;
namespace TestNet6.Controllers
{
    public class TestController : Controller
    {
        public ActionResult Index()
        {
            return View();
        }
        public string Test()
        {
            Logger.Default.Info("",Request);
            return "Test String";
        }
    }
}

最後為了路由有效,還需要新增路由對映

var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddRazorPages();
var app = builder.Build();
// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
    app.UseExceptionHandler("/Error");
    // The default HSTS value is 30 days. You may want to change this for production scenarios,see https://aka.ms/aspnetcore-hsts.
    app.UseHsts();
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRouting();
app.UseAuthorization();
app.MapRazorPages();
//新增路由對映
app.MapControllerRoute(name: "default",pattern: "{controller=Home}/{action=Index}/{id?}");
app.Run();

OK,執行測試

關於.Net6新增NLog的方法

關於.Net6新增NLog的方法

到此這篇關於.Net 6 新增NLog的文章就介紹到這了,更多相關.Net 6 新增NLog內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!