Microsoft.Extensions.Logging
8.0.0-rc.2.23479.6
Prefix Reserved
See the version list below for details.
dotnet add package Microsoft.Extensions.Logging --version 8.0.0-rc.2.23479.6
NuGet\Install-Package Microsoft.Extensions.Logging -Version 8.0.0-rc.2.23479.6
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0-rc.2.23479.6" />
paket add Microsoft.Extensions.Logging --version 8.0.0-rc.2.23479.6
#r "nuget: Microsoft.Extensions.Logging, 8.0.0-rc.2.23479.6"
// Install Microsoft.Extensions.Logging as a Cake Addin #addin nuget:?package=Microsoft.Extensions.Logging&version=8.0.0-rc.2.23479.6&prerelease // Install Microsoft.Extensions.Logging as a Cake Tool #tool nuget:?package=Microsoft.Extensions.Logging&version=8.0.0-rc.2.23479.6&prerelease
About
Microsoft.Extensions.Logging
is combined with a core logging abstraction under Microsoft.Extensions.Logging.Abstractions
. This abstraction is available in our basic built-in implementations like console, event log, and debug (Debug.WriteLine) logging.
Key Features
- Provide concrete implementations of ILoggerFactory
- Provide extension methods for service collections, logger builder, and activity tracking
- Provide logging filtering extension methods for logger builder
How to Use
Prior to .NET 6, we only had two forms possible for doing logging, using Microsoft.Extensions.Logging
:
public class LoggingSample1
{
private ILogger _logger;
public LoggingSample1(ILogger logger)
{
_logger = logger;
}
public void LogMethod(string name)
{
_logger.LogInformation("Hello {name}", name);
}
}
Here are some problems with the LoggingSample1 sample using LogInformation
, LogWarning
, etc.:
- We can provide event ID through these APIs, but they are not required today. Which leads to bad usages in real systems that want to react or detect specific event issues being logged.
- Parameters passed are processed before LogLevel checks; this leads to unnecessary code paths getting triggered even when logging is disabled for a log level.
- It requires parsing of message string on every use to find templates to substitute.
Because of these problems, the more efficient runtime approach recommended as best practices is to use LoggerMessage.Define APIs instead, illustrated below with LoggingSample2:
public class LoggingSample2
{
private ILogger _logger;
public LoggingSample2(ILogger logger)
{
_logger = logger;
}
public void LogMethod(string name)
{
Log.LogName(_logger, name);
}
private static class Log
{
private static readonly Action<ILogger, string, Exception> _logName = LoggerMessage.Define<string>(LogLevel.Information, 0, @"Hello {name}");
public static void LogName(ILogger logger, string name)
{
_logName(logger, name, null!);
}
}
}
To reach a balance between performance and usability we added the compile-time logging source generator feature in .NET 6, to learn more about it and learn how to use a source generator to create log messages check out this documentation.
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);
}
Baggage and Tags for ActivityTrackingOptions
.NET 5.0 exposed a new feature that allows configuring the logger builder with the ActivityTrackingOption
to add the tracing context Span Id, Trace Id, Parent Id, Trace state, and Trace flags to the logging scope. The tracing context usually carried in Activity.Current
.
.NET 6.0 Preview 1 extended this feature to include more tracing context properties which are the Baggage and the Tags:
var loggerFactory = LoggerFactory.Create(logging =>
{
logging.Configure(options =>
{
options.ActivityTrackingOptions = ActivityTrackingOptions.Tags | ActivityTrackingOptions.Baggage;
}).AddSimpleConsole(options =>
{
options.IncludeScopes = true;
});
});
Main Types
The main types provided by this library are:
- LoggingServiceCollectionExtensions
- LoggerFactory
- LoggerFactoryOptions
- LoggingBuilderExtensions
- ActivityTrackingOptions
- FilterLoggingBuilderExtensions
Additional Documentation
Related Packages
Microsoft.Extensions.Logging.Abstractions 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 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 is compatible. 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 is compatible. 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. |
.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 is compatible. |
.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.Bcl.AsyncInterfaces (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.DependencyInjection (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Options (>= 8.0.0-rc.2.23479.6)
- System.Diagnostics.DiagnosticSource (>= 8.0.0-rc.2.23479.6)
- System.ValueTuple (>= 4.5.0)
-
.NETStandard 2.0
- Microsoft.Bcl.AsyncInterfaces (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.DependencyInjection (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Options (>= 8.0.0-rc.2.23479.6)
- System.Diagnostics.DiagnosticSource (>= 8.0.0-rc.2.23479.6)
-
.NETStandard 2.1
- Microsoft.Extensions.DependencyInjection (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Options (>= 8.0.0-rc.2.23479.6)
- System.Diagnostics.DiagnosticSource (>= 8.0.0-rc.2.23479.6)
-
net6.0
- Microsoft.Extensions.DependencyInjection (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Options (>= 8.0.0-rc.2.23479.6)
-
net7.0
- Microsoft.Extensions.DependencyInjection (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Options (>= 8.0.0-rc.2.23479.6)
-
net8.0
- Microsoft.Extensions.DependencyInjection (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0-rc.2.23479.6)
- Microsoft.Extensions.Options (>= 8.0.0-rc.2.23479.6)
NuGet packages (5.4K)
Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Logging:
Package | Downloads |
---|---|
Microsoft.EntityFrameworkCore
Entity Framework Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations. EF Core works with SQL Server, Azure SQL Database, SQLite, Azure Cosmos DB, MySQL, PostgreSQL, and other databases through a provider plugin API. Commonly Used Types: Microsoft.EntityFrameworkCore.DbContext Microsoft.EntityFrameworkCore.DbSet |
|
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers. |
|
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 |
|
Microsoft.Extensions.Logging.Console
Console logger provider implementation for Microsoft.Extensions.Logging. |
GitHub repositories (625)
Showing the top 5 popular GitHub repositories that depend on Microsoft.Extensions.Logging:
Repository | Stars |
---|---|
microsoft/PowerToys
Windows system utilities to maximize productivity
|
|
jellyfin/jellyfin
The Free Software Media System
|
|
files-community/Files
A modern file manager that helps users organize their files and folders.
|
|
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.
|
Version | Downloads | Last updated | |
---|---|---|---|
9.0.0-rc.2.24473.5 | 98,571 | 10/8/2024 | |
9.0.0-rc.1.24431.7 | 178,798 | 9/10/2024 | |
9.0.0-preview.7.24405.7 | 89,149 | 8/13/2024 | |
9.0.0-preview.6.24327.7 | 144,116 | 7/9/2024 | |
9.0.0-preview.5.24306.7 | 111,764 | 6/11/2024 | |
9.0.0-preview.4.24266.19 | 96,516 | 5/21/2024 | |
9.0.0-preview.3.24172.9 | 242,054 | 4/11/2024 | |
9.0.0-preview.2.24128.5 | 136,324 | 3/12/2024 | |
9.0.0-preview.1.24080.9 | 137,694 | 2/13/2024 | |
8.0.1 | 4,393,752 | 10/8/2024 | |
8.0.0 | 157,792,227 | 11/14/2023 | |
8.0.0-rc.2.23479.6 | 1,596,131 | 10/10/2023 | |
8.0.0-rc.1.23419.4 | 972,996 | 9/12/2023 | |
8.0.0-preview.7.23375.6 | 513,490 | 8/8/2023 | |
8.0.0-preview.6.23329.7 | 334,979 | 7/11/2023 | |
8.0.0-preview.5.23280.8 | 235,188 | 6/13/2023 | |
8.0.0-preview.4.23259.5 | 429,884 | 5/16/2023 | |
8.0.0-preview.3.23174.8 | 354,258 | 4/11/2023 | |
8.0.0-preview.2.23128.3 | 295,750 | 3/14/2023 | |
8.0.0-preview.1.23110.8 | 216,751 | 2/21/2023 | |
7.0.0 | 219,698,585 | 11/7/2022 | |
7.0.0-rc.2.22472.3 | 417,927 | 10/11/2022 | |
7.0.0-rc.1.22426.10 | 368,939 | 9/14/2022 | |
7.0.0-preview.7.22375.6 | 351,533 | 8/9/2022 | |
7.0.0-preview.6.22324.4 | 171,633 | 7/12/2022 | |
7.0.0-preview.5.22301.12 | 151,799 | 6/14/2022 | |
7.0.0-preview.4.22229.4 | 346,742 | 5/10/2022 | |
7.0.0-preview.3.22175.4 | 162,106 | 4/13/2022 | |
7.0.0-preview.2.22152.2 | 207,897 | 3/14/2022 | |
7.0.0-preview.1.22076.8 | 109,423 | 2/17/2022 | |
6.0.0 | 476,965,593 | 11/8/2021 | |
6.0.0-rc.2.21480.5 | 1,333,157 | 10/12/2021 | |
6.0.0-rc.1.21451.13 | 503,339 | 9/14/2021 | |
6.0.0-preview.7.21377.19 | 342,830 | 8/10/2021 | |
6.0.0-preview.6.21352.12 | 264,012 | 7/14/2021 | |
6.0.0-preview.5.21301.5 | 243,012 | 6/15/2021 | |
6.0.0-preview.4.21253.7 | 120,161 | 5/24/2021 | |
6.0.0-preview.3.21201.4 | 538,411 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 194,688 | 3/11/2021 | |
6.0.0-preview.1.21102.12 | 217,167 | 2/12/2021 | |
5.0.0 | 444,567,583 | 11/9/2020 | |
5.0.0-rc.2.20475.5 | 618,683 | 10/13/2020 | |
5.0.0-rc.1.20451.14 | 508,990 | 9/14/2020 | |
5.0.0-preview.8.20407.11 | 465,216 | 8/25/2020 | |
5.0.0-preview.7.20364.11 | 214,966 | 7/21/2020 | |
5.0.0-preview.6.20305.6 | 88,591 | 6/25/2020 | |
5.0.0-preview.5.20278.1 | 54,814 | 6/10/2020 | |
5.0.0-preview.4.20251.6 | 219,939 | 5/18/2020 | |
5.0.0-preview.3.20215.2 | 204,241 | 4/23/2020 | |
5.0.0-preview.2.20160.3 | 221,482 | 4/2/2020 | |
5.0.0-preview.1.20120.4 | 80,216 | 3/16/2020 | |
3.1.32 | 10,065,086 | 12/13/2022 | |
3.1.31 | 2,028,305 | 11/8/2022 | |
3.1.30 | 2,156,963 | 10/11/2022 | |
3.1.29 | 1,914,841 | 9/13/2022 | |
3.1.28 | 2,382,876 | 8/9/2022 | |
3.1.27 | 1,810,303 | 7/12/2022 | |
3.1.26 | 1,572,117 | 6/14/2022 | |
3.1.25 | 2,544,094 | 5/10/2022 | |
3.1.24 | 1,680,512 | 4/11/2022 | |
3.1.23 | 3,006,612 | 3/8/2022 | |
3.1.22 | 14,643,312 | 12/14/2021 | |
3.1.21 | 6,467,677 | 11/7/2021 | |
3.1.20 | 3,781,331 | 10/11/2021 | |
3.1.19 | 4,654,928 | 9/14/2021 | |
3.1.18 | 41,262,308 | 8/10/2021 | |
3.1.17 | 5,727,646 | 7/13/2021 | |
3.1.16 | 9,579,460 | 6/8/2021 | |
3.1.15 | 6,905,215 | 5/11/2021 | |
3.1.14 | 9,243,639 | 4/6/2021 | |
3.1.13 | 11,963,092 | 3/9/2021 | |
3.1.12 | 9,875,514 | 2/9/2021 | |
3.1.11 | 11,584,794 | 1/12/2021 | |
3.1.10 | 19,977,442 | 11/9/2020 | |
3.1.9 | 64,720,685 | 10/13/2020 | |
3.1.8 | 58,626,089 | 9/8/2020 | |
3.1.7 | 30,423,099 | 8/11/2020 | |
3.1.6 | 35,360,122 | 7/14/2020 | |
3.1.5 | 34,934,792 | 6/9/2020 | |
3.1.4 | 39,446,097 | 5/12/2020 | |
3.1.3 | 89,177,574 | 3/24/2020 | |
3.1.2 | 70,300,416 | 2/18/2020 | |
3.1.1 | 37,861,847 | 1/14/2020 | |
3.1.0 | 146,531,456 | 12/3/2019 | |
3.1.0-preview3.19553.2 | 223,032 | 11/13/2019 | |
3.1.0-preview2.19525.4 | 71,439 | 11/1/2019 | |
3.1.0-preview1.19506.1 | 1,160,051 | 10/15/2019 | |
3.0.3 | 67,208,080 | 2/18/2020 | |
3.0.2 | 1,039,462 | 1/14/2020 | |
3.0.1 | 4,457,932 | 11/18/2019 | |
3.0.0 | 83,610,798 | 9/23/2019 | |
3.0.0-rc1.19456.10 | 85,159 | 9/16/2019 | |
3.0.0-preview9.19423.4 | 1,472,649 | 9/4/2019 | |
3.0.0-preview8.19405.4 | 544,444 | 8/13/2019 | |
3.0.0-preview7.19362.4 | 155,851 | 7/23/2019 | |
3.0.0-preview6.19304.6 | 304,609 | 6/12/2019 | |
3.0.0-preview5.19227.9 | 762,405 | 5/6/2019 | |
3.0.0-preview4.19216.2 | 48,238 | 4/18/2019 | |
3.0.0-preview3.19153.1 | 325,090 | 3/6/2019 | |
3.0.0-preview.19074.2 | 164,915 | 1/29/2019 | |
3.0.0-preview.18572.1 | 145,091 | 12/4/2018 | |
2.2.0 | 224,317,173 | 12/3/2018 | |
2.2.0-preview3-35497 | 377,767 | 10/17/2018 | |
2.2.0-preview2-35157 | 251,840 | 9/12/2018 | |
2.2.0-preview1-35029 | 139,493 | 8/22/2018 | |
2.1.1 | 340,724,999 | 6/18/2018 | |
2.1.0 | 306,141,286 | 5/29/2018 | |
2.1.0-rc1-final | 538,273 | 5/6/2018 | |
2.1.0-preview2-final | 517,815 | 4/10/2018 | |
2.1.0-preview1-final | 606,984 | 2/26/2018 | |
2.0.2 | 24,018,437 | 5/7/2018 | |
2.0.1 | 41,785,449 | 3/13/2018 | |
2.0.0 | 312,204,090 | 8/11/2017 | |
2.0.0-preview2-final | 342,244 | 6/28/2017 | |
2.0.0-preview1-final | 1,123,213 | 5/10/2017 | |
1.1.2 | 15,923,950 | 5/9/2017 | |
1.1.1 | 28,683,340 | 3/6/2017 | |
1.1.0 | 15,318,034 | 11/16/2016 | |
1.1.0-preview1-final | 174,919 | 10/24/2016 | |
1.0.2 | 77,876,010 | 3/6/2017 | |
1.0.1 | 4,519,603 | 12/12/2016 | |
1.0.0 | 24,845,623 | 6/27/2016 | |
1.0.0-rc2-final | 1,816,570 | 5/16/2016 | |
1.0.0-rc1-final | 646,176 | 11/18/2015 |