溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Serilog如何在ASP.Net Core中使用

發(fā)布時(shí)間:2021-04-02 14:28:41 來源:億速云 閱讀:245 作者:Leah 欄目:開發(fā)技術(shù)

本篇文章為大家展示了Serilog如何在ASP.Net Core中使用,內(nèi)容簡明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

安裝 Serilog

使用 Visual Studio 新建 ASP.Net Core 項(xiàng)目,接下來從 NuGet 上拉幾個(gè)包,具體如下:

  • Serilog

這個(gè)包提供了對(duì)基本的結(jié)構(gòu)化日志的功能支持。

  • Serilog.AspNetCore

這個(gè)包提供了 Serilog 對(duì) AspNetCore 的支持。

  • Serilog.Settings.Configuration

這個(gè)包打通了 Serilog 和 Configuration ,這樣你就可以直接從 appsettings.json 中讀取配置。

  • Serilog.Sinks.Console

Console接收器顧名思義就是將 Serilog 的日志輸出到 Console。

  • Serilog.Sinks.RollingFile

實(shí)現(xiàn)了對(duì) 滾動(dòng)文件 的支持。

使用 Serilog Sink

Serilog 利用 sink 特性將日志送到不同的地方,比如:text文件,數(shù)據(jù)庫,甚至是 ElasticSearch 中,換句話說,sink 特性可以把日志送到它該去的地方,當(dāng)所有的 nuget 包都安裝好了之后,下面的代碼片段展示了如何將日志送到 console 中。

        public HomeController(ILogger<HomeController> logger)
        {
            using (var logConfig = new LoggerConfiguration().WriteTo.Console().CreateLogger())
            {
                logConfig.Information("This is a test data.");
            };

            _logger = logger;
        }

Serilog如何在ASP.Net Core中使用

值得注意的是,Serilog 支持多個(gè)日志級(jí)別,如:verbose, debug, information, warning, error 和 fatal。

有時(shí)候?yàn)榱苏{(diào)試目的,將日志送到 Console 是一個(gè)好辦法,但將程序部署到生產(chǎn)之后,更通用的做法就是將日志記錄到文件中,這樣方便在生產(chǎn)上實(shí)時(shí)查看并做一定程度的日志分析,剛好這里的 Serilog.Sink.RollingFile 支持對(duì)滾動(dòng)文件的支持,下面的代碼片段展示了如何通過編程的方式將日志送到文件中。

        public HomeController()
        {
            var logger = new LoggerConfiguration().MinimumLevel.Debug().WriteTo
                                                  .RollingFile(@"e:\log.txt", retainedFileCountLimit: 7)
                                                  .CreateLogger();

            for (int i = 0; i < byte.MaxValue; i++)
            {
                logger.Information($"log {i}");
            }
        }

Serilog如何在ASP.Net Core中使用

使用 Serilog 替換原生的 Logger

在 ASP.NET Core 中內(nèi)置了 Logger 組件,這一節(jié)中我們一起看看如何使用 Serilog 將其進(jìn)行替換,在 Program.Main 方法中使用如下代碼:

    public class Program
    {
        public static void Main(string[] args)
        {
            Log.Logger = new LoggerConfiguration()
             .MinimumLevel.Debug()
             .MinimumLevel.Override("Microsoft", LogEventLevel.Information)
             .Enrich.FromLogContext()
             .WriteTo.Console()
             .CreateLogger();

            try
            {
                Log.Information("Starting web host");
                CreateHostBuilder(args).Build().Run();
            }
            catch (Exception ex)
            {
                Log.Fatal(ex, "Host terminated unexpectedly");
            }
            finally
            {
                Log.CloseAndFlush();
            }
        }

        public static IHostBuilder CreateHostBuilder(string[] args) =>
            Host.CreateDefaultBuilder(args)
              .UseSerilog()
                .ConfigureWebHostDefaults(webBuilder =>
                {
                    webBuilder.UseStartup<Startup>();
                });
    }

從上面的代碼中可以看到,我在 CreateHostBuilder 中使用了 UseSerilog() 擴(kuò)展方法來啟動(dòng) Serilog,這樣就做好了 Serilog 的替換工作,接下來可以在 Controller 中通過依賴注入的方式獲取 logger 實(shí)例,如下代碼所示:

        public IActionResult Index()
        {
            logger.LogInformation("hello world");

            return View();
        }

Serilog如何在ASP.Net Core中使用

上述內(nèi)容就是Serilog如何在ASP.Net Core中使用,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI