Microsoft.Extensions.Logging.Abstractions
9.0.0-preview.3.24172.9
Prefix Reserved
See the version list below for details.
dotnet add package Microsoft.Extensions.Logging.Abstractions --version 9.0.0-preview.3.24172.9
NuGet\Install-Package Microsoft.Extensions.Logging.Abstractions -Version 9.0.0-preview.3.24172.9
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0-preview.3.24172.9" />
paket add Microsoft.Extensions.Logging.Abstractions --version 9.0.0-preview.3.24172.9
#r "nuget: Microsoft.Extensions.Logging.Abstractions, 9.0.0-preview.3.24172.9"
// Install Microsoft.Extensions.Logging.Abstractions as a Cake Addin #addin nuget:?package=Microsoft.Extensions.Logging.Abstractions&version=9.0.0-preview.3.24172.9&prerelease // Install Microsoft.Extensions.Logging.Abstractions as a Cake Tool #tool nuget:?package=Microsoft.Extensions.Logging.Abstractions&version=9.0.0-preview.3.24172.9&prerelease
About
Microsoft.Extensions.Logging.Abstractions
provides abstractions of logging. Interfaces defined in this package are implemented by classes in Microsoft.Extensions.Logging and other logging packages.
This package includes a logging source generator that produces highly efficient and optimized code for logging message methods.
Key Features
- Define main logging abstraction interfaces like ILogger, ILoggerFactory, ILoggerProvider, etc.
How to Use
Custom logger provider implementation example
using Microsoft.Extensions.Logging;
public sealed class ColorConsoleLogger : ILogger
{
private readonly string _name;
private readonly Func<ColorConsoleLoggerConfiguration> _getCurrentConfig;
public ColorConsoleLogger(
string name,
Func<ColorConsoleLoggerConfiguration> getCurrentConfig) =>
(_name, _getCurrentConfig) = (name, getCurrentConfig);
public IDisposable? BeginScope<TState>(TState state) where TState : notnull => default!;
public bool IsEnabled(LogLevel logLevel) =>
_getCurrentConfig().LogLevelToColorMap.ContainsKey(logLevel);
public void Log<TState>(
LogLevel logLevel,
EventId eventId,
TState state,
Exception? exception,
Func<TState, Exception?, string> formatter)
{
if (!IsEnabled(logLevel))
{
return;
}
ColorConsoleLoggerConfiguration config = _getCurrentConfig();
if (config.EventId == 0 || config.EventId == eventId.Id)
{
ConsoleColor originalColor = Console.ForegroundColor;
Console.ForegroundColor = config.LogLevelToColorMap[logLevel];
Console.WriteLine($"[{eventId.Id,2}: {logLevel,-12}]");
Console.ForegroundColor = originalColor;
Console.Write($" {_name} - ");
Console.ForegroundColor = config.LogLevelToColorMap[logLevel];
Console.Write($"{formatter(state, exception)}");
Console.ForegroundColor = originalColor;
Console.WriteLine();
}
}
}
Create logs
// Worker class that uses logger implementation of teh interface ILogger<T>
public sealed class Worker : BackgroundService
{
private readonly ILogger<Worker> _logger;
public Worker(ILogger<Worker> logger) =>
_logger = logger;
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
while (!stoppingToken.IsCancellationRequested)
{
_logger.LogInformation("Worker running at: {time}", DateTimeOffset.UtcNow);
await Task.Delay(1_000, stoppingToken);
}
}
}
Use source generator
public static partial class Log
{
[LoggerMessage(
EventId = 0,
Level = LogLevel.Critical,
Message = "Could not open socket to `{hostName}`")]
public static partial void CouldNotOpenSocket(this ILogger logger, string hostName);
}
public partial class InstanceLoggingExample
{
private readonly ILogger _logger;
public InstanceLoggingExample(ILogger logger)
{
_logger = logger;
}
[LoggerMessage(
EventId = 0,
Level = LogLevel.Critical,
Message = "Could not open socket to `{hostName}`")]
public partial void CouldNotOpenSocket(string hostName);
}
Main Types
The main types provided by this library are:
Microsoft.Extensions.Logging.ILogger
Microsoft.Extensions.Logging.ILoggerProvider
Microsoft.Extensions.Logging.ILoggerFactory
Microsoft.Extensions.Logging.ILogger<TCategoryName>
Microsoft.Extensions.Logging.LogLevel
Microsoft.Extensions.Logging.Logger<T>
Microsoft.Extensions.Logging.LoggerMessage
Microsoft.Extensions.Logging.Abstractions.NullLogger
Additional Documentation
Related Packages
Microsoft.Extensions.Logging Microsoft.Extensions.Logging.Console Microsoft.Extensions.Logging.Debug Microsoft.Extensions.Logging.EventSource Microsoft.Extensions.Logging.EventLog Microsoft.Extensions.Logging.TraceSource
Feedback & Contributing
Microsoft.Extensions.Logging.Abstractions is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.2
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.0-preview.3.24172.9)
- System.Buffers (>= 4.5.1)
- System.Memory (>= 4.5.5)
-
.NETStandard 2.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.0-preview.3.24172.9)
- System.Buffers (>= 4.5.1)
- System.Memory (>= 4.5.5)
-
net8.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.0-preview.3.24172.9)
-
net9.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.0-preview.3.24172.9)
NuGet packages (9.0K)
Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Logging.Abstractions:
Package | Downloads |
---|---|
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging. |
|
Microsoft.Extensions.Hosting.Abstractions
Hosting and startup abstractions for applications. |
|
Microsoft.Extensions.Caching.Memory
In-memory cache implementation of Microsoft.Extensions.Caching.Memory.IMemoryCache. |
|
Microsoft.Extensions.Logging.Configuration
Configuration support for Microsoft.Extensions.Logging. |
|
Microsoft.Extensions.Http
The HttpClient factory is a pattern for configuring and retrieving named HttpClients in a composable way. The HttpClient factory provides extensibility to plug in DelegatingHandlers that address cross-cutting concerns such as service location, load balancing, and reliability. The default HttpClient factory provides built-in diagnostics and logging and manages the lifetimes of connections in a performant way. Commonly Used Types: System.Net.Http.IHttpClientFactory |
GitHub repositories (628)
Showing the top 5 popular GitHub repositories that depend on Microsoft.Extensions.Logging.Abstractions:
Repository | Stars |
---|---|
microsoft/PowerToys
Windows system utilities to maximize productivity
|
|
jellyfin/jellyfin
The Free Software Media System
|
|
DevToys-app/DevToys
A Swiss Army knife for developers.
|
|
dotnet/maui
.NET MAUI is the .NET Multi-platform App UI, a framework for building native device applications spanning mobile, tablet, and desktop.
|
|
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
|
Version | Downloads | Last updated | |
---|---|---|---|
9.0.0-rc.2.24473.5 | 114,563 | 10/8/2024 | |
9.0.0-rc.1.24431.7 | 187,391 | 9/10/2024 | |
9.0.0-preview.7.24405.7 | 119,677 | 8/13/2024 | |
9.0.0-preview.6.24327.7 | 185,604 | 7/9/2024 | |
9.0.0-preview.5.24306.7 | 146,828 | 6/11/2024 | |
9.0.0-preview.4.24266.19 | 109,977 | 5/21/2024 | |
9.0.0-preview.3.24172.9 | 262,194 | 4/11/2024 | |
9.0.0-preview.2.24128.5 | 159,182 | 3/12/2024 | |
9.0.0-preview.1.24080.9 | 166,555 | 2/13/2024 | |
8.0.2 | 5,501,191 | 10/8/2024 | |
8.0.1 | 56,892,842 | 3/12/2024 | |
8.0.0 | 165,338,530 | 11/14/2023 | |
8.0.0-rc.2.23479.6 | 1,796,310 | 10/10/2023 | |
8.0.0-rc.1.23419.4 | 1,124,794 | 9/12/2023 | |
8.0.0-preview.7.23375.6 | 581,196 | 8/8/2023 | |
8.0.0-preview.6.23329.7 | 402,623 | 7/11/2023 | |
8.0.0-preview.5.23280.8 | 275,240 | 6/13/2023 | |
8.0.0-preview.4.23259.5 | 479,863 | 5/16/2023 | |
8.0.0-preview.3.23174.8 | 392,218 | 4/11/2023 | |
8.0.0-preview.2.23128.3 | 324,629 | 3/14/2023 | |
8.0.0-preview.1.23110.8 | 311,202 | 2/21/2023 | |
7.0.1 | 70,515,171 | 6/13/2023 | |
7.0.0 | 241,891,900 | 11/7/2022 | |
7.0.0-rc.2.22472.3 | 1,299,434 | 10/11/2022 | |
7.0.0-rc.1.22426.10 | 431,339 | 9/14/2022 | |
7.0.0-preview.7.22375.6 | 428,221 | 8/9/2022 | |
7.0.0-preview.6.22324.4 | 258,258 | 7/12/2022 | |
7.0.0-preview.5.22301.12 | 175,322 | 6/14/2022 | |
7.0.0-preview.4.22229.4 | 479,260 | 5/10/2022 | |
7.0.0-preview.3.22175.4 | 189,000 | 4/13/2022 | |
7.0.0-preview.2.22152.2 | 239,978 | 3/14/2022 | |
7.0.0-preview.1.22076.8 | 181,848 | 2/17/2022 | |
6.0.4 | 39,432,848 | 6/13/2023 | |
6.0.3 | 48,429,216 | 11/7/2022 | |
6.0.2 | 44,627,642 | 9/13/2022 | |
6.0.1 | 156,672,640 | 3/8/2022 | |
6.0.0 | 540,082,191 | 11/8/2021 | |
6.0.0-rc.2.21480.5 | 1,826,398 | 10/12/2021 | |
6.0.0-rc.1.21451.13 | 601,517 | 9/14/2021 | |
6.0.0-preview.7.21377.19 | 813,810 | 8/10/2021 | |
6.0.0-preview.6.21352.12 | 342,623 | 7/14/2021 | |
6.0.0-preview.5.21301.5 | 279,651 | 6/15/2021 | |
6.0.0-preview.4.21253.7 | 181,696 | 5/24/2021 | |
6.0.0-preview.3.21201.4 | 584,115 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 228,247 | 3/11/2021 | |
6.0.0-preview.1.21102.12 | 536,927 | 2/12/2021 | |
5.0.0 | 495,241,888 | 11/9/2020 | |
5.0.0-rc.2.20475.5 | 1,071,965 | 10/13/2020 | |
5.0.0-rc.1.20451.14 | 606,724 | 9/14/2020 | |
5.0.0-preview.8.20407.11 | 500,343 | 8/25/2020 | |
5.0.0-preview.7.20364.11 | 242,599 | 7/21/2020 | |
5.0.0-preview.6.20305.6 | 143,130 | 6/25/2020 | |
5.0.0-preview.5.20278.1 | 65,414 | 6/10/2020 | |
5.0.0-preview.4.20251.6 | 307,368 | 5/18/2020 | |
5.0.0-preview.3.20215.2 | 234,883 | 4/23/2020 | |
5.0.0-preview.2.20160.3 | 314,866 | 4/2/2020 | |
5.0.0-preview.1.20120.4 | 165,992 | 3/16/2020 | |
3.1.32 | 20,228,460 | 12/13/2022 | |
3.1.31 | 3,517,814 | 11/8/2022 | |
3.1.30 | 2,379,494 | 10/11/2022 | |
3.1.29 | 2,480,349 | 9/13/2022 | |
3.1.28 | 6,184,789 | 8/9/2022 | |
3.1.27 | 2,332,287 | 7/12/2022 | |
3.1.26 | 4,070,112 | 6/14/2022 | |
3.1.25 | 3,246,959 | 5/10/2022 | |
3.1.24 | 3,730,766 | 4/11/2022 | |
3.1.23 | 4,611,211 | 3/8/2022 | |
3.1.22 | 18,114,925 | 12/14/2021 | |
3.1.21 | 9,863,513 | 11/7/2021 | |
3.1.20 | 5,194,076 | 10/11/2021 | |
3.1.19 | 5,427,350 | 9/14/2021 | |
3.1.18 | 60,060,398 | 8/10/2021 | |
3.1.17 | 7,259,249 | 7/13/2021 | |
3.1.16 | 16,360,292 | 6/8/2021 | |
3.1.15 | 8,330,210 | 5/11/2021 | |
3.1.14 | 14,168,375 | 4/6/2021 | |
3.1.13 | 13,763,757 | 3/9/2021 | |
3.1.12 | 12,323,163 | 2/9/2021 | |
3.1.11 | 19,814,991 | 1/12/2021 | |
3.1.10 | 27,589,105 | 11/9/2020 | |
3.1.9 | 77,540,902 | 10/13/2020 | |
3.1.8 | 242,037,384 | 9/8/2020 | |
3.1.7 | 42,309,089 | 8/11/2020 | |
3.1.6 | 46,586,225 | 7/14/2020 | |
3.1.5 | 47,357,174 | 6/9/2020 | |
3.1.4 | 54,125,647 | 5/12/2020 | |
3.1.3 | 110,989,381 | 3/24/2020 | |
3.1.2 | 80,166,148 | 2/18/2020 | |
3.1.1 | 44,338,597 | 1/14/2020 | |
3.1.0 | 174,822,810 | 12/3/2019 | |
3.1.0-preview3.19553.2 | 1,931,706 | 11/13/2019 | |
3.1.0-preview2.19525.4 | 106,571 | 11/1/2019 | |
3.1.0-preview1.19506.1 | 1,257,143 | 10/15/2019 | |
3.0.3 | 154,181,841 | 2/18/2020 | |
3.0.2 | 1,149,372 | 1/14/2020 | |
3.0.1 | 7,339,500 | 11/18/2019 | |
3.0.0 | 132,139,815 | 9/23/2019 | |
3.0.0-rc1.19456.10 | 169,871 | 9/16/2019 | |
3.0.0-preview9.19423.4 | 1,664,101 | 9/4/2019 | |
3.0.0-preview8.19405.4 | 609,678 | 8/13/2019 | |
3.0.0-preview7.19362.4 | 205,887 | 7/23/2019 | |
3.0.0-preview6.19304.6 | 462,356 | 6/12/2019 | |
3.0.0-preview5.19227.9 | 781,744 | 5/6/2019 | |
3.0.0-preview4.19216.2 | 53,747 | 4/18/2019 | |
3.0.0-preview3.19153.1 | 394,341 | 3/6/2019 | |
3.0.0-preview.19074.2 | 177,821 | 1/29/2019 | |
3.0.0-preview.18572.1 | 164,059 | 12/4/2018 | |
2.2.0 | 542,783,507 | 12/3/2018 | |
2.2.0-preview3-35497 | 557,275 | 10/17/2018 | |
2.2.0-preview2-35157 | 561,540 | 9/12/2018 | |
2.2.0-preview1-35029 | 252,251 | 8/22/2018 | |
2.1.1 | 452,005,292 | 6/18/2018 | |
2.1.0 | 477,191,209 | 5/29/2018 | |
2.1.0-rc1-final | 653,929 | 5/6/2018 | |
2.1.0-preview2-final | 830,046 | 4/10/2018 | |
2.1.0-preview1-final | 853,399 | 2/26/2018 | |
2.0.2 | 37,541,353 | 5/7/2018 | |
2.0.1 | 51,247,832 | 3/13/2018 | |
2.0.0 | 429,580,942 | 8/11/2017 | |
2.0.0-preview2-final | 422,974 | 6/28/2017 | |
2.0.0-preview1-final | 1,153,758 | 5/10/2017 | |
1.1.2 | 29,278,248 | 5/9/2017 | |
1.1.1 | 45,333,293 | 3/6/2017 | |
1.1.0 | 20,911,999 | 11/16/2016 | |
1.1.0-preview1-final | 207,536 | 10/24/2016 | |
1.0.2 | 124,893,470 | 3/6/2017 | |
1.0.1 | 4,837,835 | 12/12/2016 | |
1.0.0 | 55,066,350 | 6/27/2016 | |
1.0.0-rc2-final | 2,186,232 | 5/16/2016 | |
1.0.0-rc1-final | 887,148 | 11/18/2015 |