Microsoft.Extensions.Logging 8.0.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Microsoft.Extensions.Logging --version 8.0.0
NuGet\Install-Package Microsoft.Extensions.Logging -Version 8.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.Extensions.Logging --version 8.0.0
#r "nuget: Microsoft.Extensions.Logging, 8.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Microsoft.Extensions.Logging as a Cake Addin
#addin nuget:?package=Microsoft.Extensions.Logging&version=8.0.0

// Install Microsoft.Extensions.Logging as a Cake Tool
#tool nuget:?package=Microsoft.Extensions.Logging&version=8.0.0

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.:

  1. 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.
  2. Parameters passed are processed before LogLevel checks; this leads to unnecessary code paths getting triggered even when logging is disabled for a log level.
  3. 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

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4.9K)

Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Logging:

Package Downloads
Microsoft.EntityFrameworkCore The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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.Extensions.Logging.Configuration The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Configuration support for Microsoft.Extensions.Logging.

Microsoft.Extensions.Http The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Console logger provider implementation for Microsoft.Extensions.Logging.

Microsoft.Extensions.Logging.Debug The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Debug output logger provider implementation for Microsoft.Extensions.Logging. This logger logs messages to a debugger monitor by writing messages with System.Diagnostics.Debug.WriteLine().

GitHub repositories (576)

Showing the top 5 popular GitHub repositories that depend on Microsoft.Extensions.Logging:

Repository Stars
microsoft/PowerToys
Windows system utilities to maximize productivity
files-community/Files
Building the best file manager for Windows
jellyfin/jellyfin
The Free Software Media System
dotnet/maui
.NET MAUI is the .NET Multi-platform App UI, a framework for building native device applications spanning mobile, tablet, and desktop.
dotnet/roslyn
The Roslyn .NET compiler provides C# and Visual Basic languages with rich code analysis APIs.
Version Downloads Last updated
9.0.0-preview.2.24128.5 6,078 3/12/2024
9.0.0-preview.1.24080.9 57,365 2/13/2024
8.0.0 26,552,606 11/14/2023
8.0.0-rc.2.23479.6 820,283 10/10/2023
8.0.0-rc.1.23419.4 578,940 9/12/2023
8.0.0-preview.7.23375.6 284,763 8/8/2023
8.0.0-preview.6.23329.7 243,562 7/11/2023
8.0.0-preview.5.23280.8 184,077 6/13/2023
8.0.0-preview.4.23259.5 269,218 5/16/2023
8.0.0-preview.3.23174.8 230,308 4/11/2023
8.0.0-preview.2.23128.3 231,557 3/14/2023
8.0.0-preview.1.23110.8 188,792 2/21/2023
7.0.0 150,486,862 11/7/2022
7.0.0-rc.2.22472.3 368,033 10/11/2022
7.0.0-rc.1.22426.10 334,439 9/14/2022
7.0.0-preview.7.22375.6 304,833 8/9/2022
7.0.0-preview.6.22324.4 146,900 7/12/2022
7.0.0-preview.5.22301.12 138,240 6/14/2022
7.0.0-preview.4.22229.4 281,312 5/10/2022
7.0.0-preview.3.22175.4 141,673 4/13/2022
7.0.0-preview.2.22152.2 187,122 3/14/2022
7.0.0-preview.1.22076.8 99,631 2/17/2022
6.0.2-mauipre.1.22102.15 121,349 2/15/2022
6.0.2-mauipre.1.22054.8 171,647 1/19/2022
6.0.0 354,585,483 11/8/2021
6.0.0-rc.2.21480.5 1,245,866 10/12/2021
6.0.0-rc.1.21451.13 452,219 9/14/2021
6.0.0-preview.7.21377.19 327,938 8/10/2021
6.0.0-preview.6.21352.12 242,821 7/14/2021
6.0.0-preview.5.21301.5 226,635 6/15/2021
6.0.0-preview.4.21253.7 117,164 5/24/2021
6.0.0-preview.3.21201.4 494,848 4/8/2021
6.0.0-preview.2.21154.6 181,689 3/11/2021
6.0.0-preview.1.21102.12 202,557 2/12/2021
5.0.0 375,867,985 11/9/2020
5.0.0-rc.2.20475.5 590,003 10/13/2020
5.0.0-rc.1.20451.14 494,679 9/14/2020
5.0.0-preview.8.20407.11 418,987 8/25/2020
5.0.0-preview.7.20364.11 210,009 7/21/2020
5.0.0-preview.6.20305.6 86,015 6/25/2020
5.0.0-preview.5.20278.1 52,918 6/10/2020
5.0.0-preview.4.20251.6 217,781 5/18/2020
5.0.0-preview.3.20215.2 197,436 4/23/2020
5.0.0-preview.2.20160.3 215,979 4/2/2020
5.0.0-preview.1.20120.4 77,402 3/16/2020
3.1.32 5,543,727 12/13/2022
3.1.31 1,492,072 11/8/2022
3.1.30 1,635,042 10/11/2022
3.1.29 1,454,498 9/13/2022
3.1.28 1,935,749 8/9/2022
3.1.27 1,453,351 7/12/2022
3.1.26 1,373,771 6/14/2022
3.1.25 2,255,716 5/10/2022
3.1.24 1,513,345 4/11/2022
3.1.23 2,569,624 3/8/2022
3.1.22 11,405,828 12/14/2021
3.1.21 5,782,498 11/7/2021
3.1.20 3,335,286 10/11/2021
3.1.19 4,139,928 9/14/2021
3.1.18 33,397,051 8/10/2021
3.1.17 5,159,032 7/13/2021
3.1.16 8,657,662 6/8/2021
3.1.15 6,396,178 5/11/2021
3.1.14 8,341,655 4/6/2021
3.1.13 10,992,084 3/9/2021
3.1.12 9,011,824 2/9/2021
3.1.11 10,485,436 1/12/2021
3.1.10 18,673,231 11/9/2020
3.1.9 56,725,102 10/13/2020
3.1.8 53,776,907 9/8/2020
3.1.7 27,735,687 8/11/2020
3.1.6 32,669,725 7/14/2020
3.1.5 32,804,068 6/9/2020
3.1.4 35,355,185 5/12/2020
3.1.3 67,195,138 3/24/2020
3.1.2 65,534,841 2/18/2020
3.1.1 35,072,537 1/14/2020
3.1.0 111,276,787 12/3/2019
3.1.0-preview3.19553.2 215,154 11/13/2019
3.1.0-preview2.19525.4 69,666 11/1/2019
3.1.0-preview1.19506.1 1,094,634 10/15/2019
3.0.3 51,438,237 2/18/2020
3.0.2 1,022,373 1/14/2020
3.0.1 4,237,800 11/18/2019
3.0.0 77,374,115 9/23/2019
3.0.0-rc1.19456.10 83,829 9/16/2019
3.0.0-preview9.19423.4 1,415,663 9/4/2019
3.0.0-preview8.19405.4 516,375 8/13/2019
3.0.0-preview7.19362.4 151,703 7/23/2019
3.0.0-preview6.19304.6 293,322 6/12/2019
3.0.0-preview5.19227.9 725,286 5/6/2019
3.0.0-preview4.19216.2 47,205 4/18/2019
3.0.0-preview3.19153.1 313,852 3/6/2019
3.0.0-preview.19074.2 160,184 1/29/2019
3.0.0-preview.18572.1 139,568 12/4/2018
2.2.0 195,787,287 12/3/2018
2.2.0-preview3-35497 365,059 10/17/2018
2.2.0-preview2-35157 236,587 9/12/2018
2.2.0-preview1-35029 133,521 8/22/2018
2.1.1 261,659,541 6/18/2018
2.1.0 265,593,802 5/29/2018
2.1.0-rc1-final 491,554 5/6/2018
2.1.0-preview2-final 470,460 4/10/2018
2.1.0-preview1-final 574,235 2/26/2018
2.0.2 20,741,310 5/7/2018
2.0.1 38,841,670 3/13/2018
2.0.0 274,465,529 8/11/2017
2.0.0-preview2-final 308,075 6/28/2017
2.0.0-preview1-final 1,090,081 5/10/2017
1.1.2 14,963,915 5/9/2017
1.1.1 26,305,710 3/6/2017
1.1.0 13,590,289 11/16/2016
1.1.0-preview1-final 170,535 10/24/2016
1.0.2 75,271,444 3/6/2017
1.0.1 4,347,443 12/12/2016
1.0.0 22,764,727 6/27/2016
1.0.0-rc2-final 1,806,767 5/16/2016
1.0.0-rc1-final 642,532 11/18/2015