.NET 6에서 Serilog를 로깅 공급자로 설정

4578 단어 csharpdotnetnet6
Serilog는 많은 구성 및 싱크(출력)가 있는 로깅을 위한 강력한 API이며 모든 .NET 버전에서 시작하는 것이 간단합니다.

Originally posted at https://rmauro.dev/setup-serilog-in-net6-as-logging-provider/



.NET 5에서 .NET 6를 로깅 공급자로 구성하는 데 사용했던 Serilog 방식을 사용하면 더 이상 존재하지 않습니다..NET 6 응용 프로그램을 부트스트랩하는 것은 이전 버전과 다르지만 여전히 매우 쉽습니다.

Like many other libraries for .NET, Serilog provides diagnostic logging to files, the console, and elsewhere. It is easy to set up, has a clean API, and is portable between recent .NET platforms. Unlike other logging libraries, Serilog is built with powerful structured event data in mind.



https://serilog.net/의 말

Microsoft.NET 인터페이스를 사용할 수 있도록 ILogger의 기본 로깅 시스템에서 Serilog를 로깅 공급자로 설정해 보겠습니다.

namespace Microsoft.Extensions.Logging
{
    public interface ILogger<out TCategoryName> : ILogger
    {
    }
}


마이크로소프트 ILogger 인터페이스

말로는 그만 - 코드를 보여줘


Program.cs에서 이러한 코드 변경 사항을 추가합니다.

using Serilog;

//create the logger and setup your sinks, filters and properties
Log.Logger = new LoggerConfiguration()
    .WriteTo.Console()
    .CreateBootstrapLogger();

var builder = WebApplication.CreateBuilder();
//after create the builder - UseSerilog

builder.Host.UseSerilog();

//redacted code


Serilog로 프로그램 구현

여기까지 변경한 내용으로 ILogger 인터페이스를 삽입하고 Serilog를 로그 공급자로 사용할 수 있습니다.

간단한 설명



싱크Console로 전역 변수 Serilog.Logger를 설정하고 로거를 부트스트랩합니다.

//create the logger and setup your sinks, filters and properties
Log.Logger = new LoggerConfiguration()
    .WriteTo.Console()
    .CreateBootstrapLogger();


기본 로깅 시스템에서 로깅 제공자로 추가했습니다Serilog.

builder.Host.UseSerilog();


산출




Serilog 출력 샘플

다시 - 여기에서 모든 작업이 완료되었습니다. 당신이 그것을 좋아한다면 더 구독하십시오.

Originally posted at https://rmauro.dev/setup-serilog-in-net6-as-logging-provider/

좋은 웹페이지 즐겨찾기