.NET 6에서 Serilog를 로깅 공급자로 설정
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/
Reference
이 문제에 관하여(.NET 6에서 Serilog를 로깅 공급자로 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/rmaurodev/set-up-serilog-in-net-6-as-logging-provider-2dja텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)