Skip to content
This repository has been archived by the owner on Jan 7, 2024. It is now read-only.

Latest commit

 

History

History
17 lines (12 loc) · 471 Bytes

File metadata and controls

17 lines (12 loc) · 471 Bytes

Shuttle.Core.Microsoft.Extensions.Logging

PM> Install-Package Shuttle.Core.Microsoft.Extensions.Logging

Shuttle logging implementation for Microsoft's extension logging adapter.

Usage

    using var loggerFactory =
        LoggerFactory.Create(builder =>
            builder.AddSimpleConsole());
    
    Log.Assign(new Logger(loggerFactory.CreateLogger<Program>()));