如何使用NLog-ASP.NETCore5

這篇文章主要講解了“如何使用NLog-ASP.NET Core 5”,文中的講解內(nèi)容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“如何使用NLog-ASP.NET Core 5”吧!

成都創(chuàng)新互聯(lián)公司是一家專業(yè)提供冀州企業(yè)網(wǎng)站建設(shè),專注與網(wǎng)站設(shè)計、網(wǎng)站制作、H5頁面制作、小程序制作等業(yè)務(wù)。10年已為冀州眾多企業(yè)、政府機構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)的建站公司優(yōu)惠進行中。

1、創(chuàng)建一個新的ASP.NET Core項目

在Visual Studio 2019中。需要版本16.8+

2、手動或使用NuGet在csproj中添加依賴項

安裝最新版本:

  • NLog.Web.AspNetCore 4.9+

  • 如有可能,更新NLog軟件包

在csproj中:

<ItemGroup>   <PackageReference Include="NLog.Web.AspNetCore" Version="4.9.3" />   <PackageReference Include="NLog" Version="4.7.6" /> </ItemGroup>

3、創(chuàng)建一個nlog.config文件。

在項目的根目錄中創(chuàng)建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="Info"       internalLogFile="c:\temp\internal-nlog.txt">    <!-- enable asp.net core layout renderers -->   <extensions>     <add assembly="NLog.Web.AspNetCore"/>   </extensions>    <!-- the targets to write to -->   <targets>     <!-- write logs to file  -->     <target xsi:type="File" name="allfile" fileName="c:\temp\nlog-all-${shortdate}.log"             layout="${longdate}|${event-properties:item=EventId_Id}|${uppercase:${level}}|${logger}|${message} ${exception:format=tostring}" />      <!-- another file log, only own logs. Uses some ASP.NET core renderers -->     <target xsi:type="File" name="ownFile-web" fileName="c:\temp\nlog-own-${shortdate}.log"             layout="${longdate}|${event-properties:item=EventId_Id}|${uppercase:${level}}|${logger}|${message} ${exception:format=tostring}|url: ${aspnet-request-url}|action: ${aspnet-mvc-action}" />   </targets>    <!-- rules to map from logger name to target -->   <rules>     <!--All logs, including from Microsoft-->     <logger name="*" minlevel="Trace" writeTo="allfile" />      <!--Skip non-critical Microsoft logs and so log only own logs-->     <logger name="Microsoft.*" maxlevel="Info" final="true" /> <!-- BlackHole without writeTo -->     <logger name="System.Net.Http.*" maxlevel="Info" final="true" /> <!-- BlackHole without writeTo -->      <logger name="*" minlevel="Trace" writeTo="ownFile-web" />   </rules> </nlog>

請注意,如果刪除所有其他LoggingProviders(如控制臺)并且僅使用NLog,則可能必須特別注意Hosting Lifetime Startup  Messages。因為這可能導致托管環(huán)境(Visual Studio / Docker / Azure容器)看不到已啟動的應(yīng)用程序。

4、更新program.cs

更新program.cs

using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; using System; using NLog.Web;  namespace ASP.NET_Core_5_NLog_Example {     public class Program     {         public static void Main(string[] args)         {             var logger = NLogBuilder.ConfigureNLog("nlog.config").GetCurrentClassLogger();             try             {                 logger.Debug("init main");                 CreateHostBuilder(args).Build().Run();             }             catch (Exception exception)             {                 //NLog: catch setup errors                 logger.Error(exception, "Stopped program because of exception");                 throw;             }             finally             {                 // Ensure to flush and stop internal timers/threads before application-exit (Avoid segmentation fault on Linux)                 NLog.LogManager.Shutdown();             }         }          public static IHostBuilder CreateHostBuilder(string[] args) =>             Host.CreateDefaultBuilder(args)                 .ConfigureWebHostDefaults(webBuilder =>                 {                     webBuilder.UseStartup<Startup>();                 })                 .ConfigureLogging(logging =>                 {                     logging.ClearProviders();                     logging.SetMinimumLevel(LogLevel.Trace);                 })                 .UseNLog();  // NLog: Setup NLog for Dependency injection     } }

5、配置appsettings.json / appsettings.Development.json

中指定的日志記錄配置appsettings.json會覆蓋對的任何調(diào)用SetMinimumLevel。因此"Default":,請根據(jù)您的需要刪除或正確調(diào)整它。

{   "Logging": {     "IncludeScopes": false,     "LogLevel": {       "Default": "Trace",       "Microsoft": "Warning",       "Microsoft.Hosting.Lifetime": "Information"     }   },   "AllowedHosts": "*" }

切記還要更新任何特定于環(huán)境的配置,以免引起任何意外。前任appsettings.Development.json

6、寫日志

將ILogger注入您的控制器中:

using Microsoft.Extensions.Logging;  public class HomeController : Controller {     private readonly ILogger<HomeController> _logger;      public HomeController(ILogger<HomeController> logger)     {         _logger = logger;         _logger.LogDebug(1, "NLog injected into HomeController");     }      public IActionResult Index()     {         _logger.LogInformation("Hello, this is the index!");         return View();     }

7、示例輸出

啟動ASP.NET Core網(wǎng)站時,我們得到兩個文件:

2020-12-29 16:47:02.5291||DEBUG|ASP.NET_Core_5_NLog_Example.Program|init main |url: |action:  2020-12-29 16:47:03.5943|1|DEBUG|ASP.NET_Core_5_NLog_Example.Controllers.HomeController|NLog injected into HomeController |url: https://localhost/|action: Index 2020-12-29 16:47:03.5943||INFO|ASP.NET_Core_5_NLog_Example.Controllers.HomeController|Hello, this is the index! |url: https://localhost/|action: Index
2020-12-29 16:47:02.5291||DEBUG|ASP.NET_Core_5_NLog_Example.Program|init main  2020-12-29 16:47:03.5260||INFO|Microsoft.Hosting.Lifetime|Application started. Press Ctrl+C to shut down.  2020-12-29 16:47:03.5260||INFO|Microsoft.Hosting.Lifetime|Hosting environment: Development  2020-12-29 16:47:03.5260||INFO|Microsoft.Hosting.Lifetime|Content root path: D:\nlog\NLog.Web\examples\ASP.NET Core 5\ASP.NET Core 5 NLog Example  2020-12-29 16:47:03.5943|1|DEBUG|ASP.NET_Core_5_NLog_Example.Controllers.HomeController|NLog injected into HomeController  2020-12-29 16:47:03.5943||INFO|ASP.NET_Core_5_NLog_Example.Controllers.HomeController|Hello, this is the index!

感謝各位的閱讀,以上就是“如何使用NLog-ASP.NET Core 5”的內(nèi)容了,經(jīng)過本文的學習后,相信大家對如何使用NLog-ASP.NET Core 5這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!

新聞名稱:如何使用NLog-ASP.NETCore5
本文路徑:http://muchs.cn/article40/jpgpho.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供動態(tài)網(wǎng)站、建站公司、移動網(wǎng)站建設(shè)、定制網(wǎng)站、品牌網(wǎng)站設(shè)計、企業(yè)建站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

網(wǎng)站建設(shè)網(wǎng)站維護公司