Microsoft.Extensions.Logging 9.0.4

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 9.0.4
                    
NuGet\Install-Package Microsoft.Extensions.Logging -Version 9.0.4
                    
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="9.0.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.Extensions.Logging" Version="9.0.4" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.Extensions.Logging" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Microsoft.Extensions.Logging --version 9.0.4
                    
#r "nuget: Microsoft.Extensions.Logging, 9.0.4"
                    
#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.
#addin nuget:?package=Microsoft.Extensions.Logging&version=9.0.4
                    
Install Microsoft.Extensions.Logging as a Cake Addin
#tool nuget:?package=Microsoft.Extensions.Logging&version=9.0.4
                    
Install Microsoft.Extensions.Logging as a Cake Tool

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 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.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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 (6.1K)

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 (666)

Showing the top 20 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 - Server Backend & API
files-community/Files
A modern file manager that helps users organize their files and folders.
DevToys-app/DevToys
A Swiss Army knife for developers.
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
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.
ardalis/CleanArchitecture
Clean Architecture Solution Template: A proven Clean Architecture Template for ASP.NET Core 9
bitwarden/server
Bitwarden infrastructure/backend (API, database, Docker, etc).
dotnet/runtime
.NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.
dotnet/efcore
EF Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations.
App-vNext/Polly
Polly is a .NET resilience and transient-fault-handling library that allows developers to express policies such as Retry, Circuit Breaker, Timeout, Bulkhead Isolation, and Fallback in a fluent and thread-safe manner. From version 6.0.1, Polly targets .NET Standard 1.1 and 2.0+.
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
duplicati/duplicati
Store securely encrypted backups in the cloud!
Sonarr/Sonarr
Smart PVR for newsgroup and bittorrent users.
Radarr/Radarr
Movie organizer/manager for usenet and torrent users.
microsoft/garnet
Garnet is a remote cache-store from Microsoft Research that offers strong performance (throughput and latency), scalability, storage, recovery, cluster sharding, key migration, and replication features. Garnet can work with existing Redis clients.
chocolatey/choco
Chocolatey - the package manager for Windows
dotnet/orleans
Cloud Native application framework for .NET
Version Downloads Last updated
10.0.0-preview.3.25171.5 9,442 13 days ago
10.0.0-preview.2.25163.2 24,130 a month ago
10.0.0-preview.1.25080.5 28,564 2 months ago
9.0.4 1,466,270 15 days ago
9.0.3 5,239,215 a month ago
9.0.2 8,144,865 2 months ago
9.0.1 10,503,243 3 months ago
9.0.0 35,126,044 5 months ago
9.0.0-rc.2.24473.5 607,910 7 months ago
9.0.0-rc.1.24431.7 451,168 7 months ago
9.0.0-preview.7.24405.7 181,967 8 months ago
9.0.0-preview.6.24327.7 280,589 9 months ago
9.0.0-preview.5.24306.7 149,090 6/11/2024
9.0.0-preview.4.24266.19 164,544 5/21/2024
9.0.0-preview.3.24172.9 307,689 4/11/2024
9.0.0-preview.2.24128.5 175,844 3/12/2024
9.0.0-preview.1.24080.9 192,996 2/13/2024
8.0.1 69,318,820 7 months ago
8.0.0 281,089,958 11/14/2023
8.0.0-rc.2.23479.6 2,046,847 10/10/2023
8.0.0-rc.1.23419.4 1,249,987 9/12/2023
8.0.0-preview.7.23375.6 691,852 8/8/2023
8.0.0-preview.6.23329.7 404,338 7/11/2023
8.0.0-preview.5.23280.8 302,107 6/13/2023
8.0.0-preview.4.23259.5 536,834 5/16/2023
8.0.0-preview.3.23174.8 432,966 4/11/2023
8.0.0-preview.2.23128.3 312,758 3/14/2023
8.0.0-preview.1.23110.8 230,949 2/21/2023
7.0.0 259,117,817 11/7/2022
7.0.0-rc.2.22472.3 443,007 10/11/2022
7.0.0-rc.1.22426.10 385,583 9/14/2022
7.0.0-preview.7.22375.6 364,949 8/9/2022
7.0.0-preview.6.22324.4 186,668 7/12/2022
7.0.0-preview.5.22301.12 157,752 6/14/2022
7.0.0-preview.4.22229.4 374,911 5/10/2022
7.0.0-preview.3.22175.4 172,777 4/13/2022
7.0.0-preview.2.22152.2 217,314 3/14/2022
7.0.0-preview.1.22076.8 114,675 2/17/2022
6.0.1 1,791,516 5 months ago
6.0.0 569,963,257 11/8/2021
6.0.0-rc.2.21480.5 1,379,309 10/12/2021
6.0.0-rc.1.21451.13 541,526 9/14/2021
6.0.0-preview.7.21377.19 350,917 8/10/2021
6.0.0-preview.6.21352.12 273,160 7/14/2021
6.0.0-preview.5.21301.5 249,983 6/15/2021
6.0.0-preview.4.21253.7 122,431 5/24/2021
6.0.0-preview.3.21201.4 563,500 4/8/2021
6.0.0-preview.2.21154.6 197,182 3/11/2021 6.0.0-preview.2.21154.6 is deprecated because it is no longer maintained.
6.0.0-preview.1.21102.12 226,338 2/12/2021 6.0.0-preview.1.21102.12 is deprecated because it is no longer maintained.
5.0.0 492,211,682 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.5 641,736 10/13/2020 5.0.0-rc.2.20475.5 is deprecated because it is no longer maintained.
5.0.0-rc.1.20451.14 518,816 9/14/2020 5.0.0-rc.1.20451.14 is deprecated because it is no longer maintained.
5.0.0-preview.8.20407.11 491,818 8/25/2020 5.0.0-preview.8.20407.11 is deprecated because it is no longer maintained.
5.0.0-preview.7.20364.11 218,544 7/21/2020 5.0.0-preview.7.20364.11 is deprecated because it is no longer maintained.
5.0.0-preview.6.20305.6 90,963 6/25/2020 5.0.0-preview.6.20305.6 is deprecated because it is no longer maintained.
5.0.0-preview.5.20278.1 56,524 6/10/2020 5.0.0-preview.5.20278.1 is deprecated because it is no longer maintained.
5.0.0-preview.4.20251.6 221,796 5/18/2020 5.0.0-preview.4.20251.6 is deprecated because it is no longer maintained.
5.0.0-preview.3.20215.2 207,870 4/23/2020 5.0.0-preview.3.20215.2 is deprecated because it is no longer maintained.
5.0.0-preview.2.20160.3 225,866 4/2/2020 5.0.0-preview.2.20160.3 is deprecated because it is no longer maintained.
5.0.0-preview.1.20120.4 82,516 3/16/2020 5.0.0-preview.1.20120.4 is deprecated because it is no longer maintained.
3.1.32 14,284,848 12/13/2022
3.1.31 2,473,018 11/8/2022
3.1.30 2,489,420 10/11/2022
3.1.29 2,300,214 9/13/2022
3.1.28 2,659,623 8/9/2022
3.1.27 2,004,913 7/12/2022
3.1.26 1,702,612 6/14/2022
3.1.25 2,707,733 5/10/2022
3.1.24 1,780,822 4/11/2022
3.1.23 3,236,369 3/8/2022
3.1.22 17,005,546 12/14/2021
3.1.21 6,933,725 11/7/2021
3.1.20 4,133,608 10/11/2021
3.1.19 4,915,436 9/14/2021
3.1.18 45,669,424 8/10/2021
3.1.17 6,047,790 7/13/2021
3.1.16 10,087,175 6/8/2021
3.1.15 7,255,324 5/11/2021
3.1.14 9,776,554 4/6/2021
3.1.13 12,630,221 3/9/2021
3.1.12 10,378,860 2/9/2021
3.1.11 12,325,201 1/12/2021
3.1.10 20,792,181 11/9/2020
3.1.9 71,190,407 10/13/2020
3.1.8 62,540,477 9/8/2020
3.1.7 32,618,837 8/11/2020
3.1.6 36,961,620 7/14/2020
3.1.5 36,082,833 6/9/2020
3.1.4 42,432,290 5/12/2020
3.1.3 107,258,537 3/24/2020
3.1.2 73,516,625 2/18/2020
3.1.1 39,440,406 1/14/2020
3.1.0 173,191,416 12/3/2019
3.1.0-preview3.19553.2 225,136 11/13/2019 3.1.0-preview3.19553.2 is deprecated because it is no longer maintained.
3.1.0-preview2.19525.4 72,623 11/1/2019 3.1.0-preview2.19525.4 is deprecated because it is no longer maintained.
3.1.0-preview1.19506.1 1,198,244 10/15/2019 3.1.0-preview1.19506.1 is deprecated because it is no longer maintained.
3.0.3 78,909,498 2/18/2020 3.0.3 is deprecated because it is no longer maintained.
3.0.2 1,058,497 1/14/2020 3.0.2 is deprecated because it is no longer maintained.
3.0.1 4,590,386 11/18/2019 3.0.1 is deprecated because it is no longer maintained.
3.0.0 87,940,573 9/23/2019 3.0.0 is deprecated because it is no longer maintained.
3.0.0-rc1.19456.10 85,996 9/16/2019 3.0.0-rc1.19456.10 is deprecated because it is no longer maintained.
3.0.0-preview9.19423.4 1,502,362 9/4/2019 3.0.0-preview9.19423.4 is deprecated because it is no longer maintained.
3.0.0-preview8.19405.4 553,667 8/13/2019 3.0.0-preview8.19405.4 is deprecated because it is no longer maintained.
3.0.0-preview7.19362.4 157,326 7/23/2019 3.0.0-preview7.19362.4 is deprecated because it is no longer maintained.
3.0.0-preview6.19304.6 309,878 6/12/2019 3.0.0-preview6.19304.6 is deprecated because it is no longer maintained.
3.0.0-preview5.19227.9 769,654 5/6/2019 3.0.0-preview5.19227.9 is deprecated because it is no longer maintained.
3.0.0-preview4.19216.2 48,857 4/18/2019 3.0.0-preview4.19216.2 is deprecated because it is no longer maintained.
3.0.0-preview3.19153.1 328,512 3/6/2019 3.0.0-preview3.19153.1 is deprecated because it is no longer maintained.
3.0.0-preview.19074.2 167,218 1/29/2019 3.0.0-preview.19074.2 is deprecated because it is no longer maintained.
3.0.0-preview.18572.1 146,964 12/4/2018 3.0.0-preview.18572.1 is deprecated because it is no longer maintained.
2.2.0 245,944,804 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 384,913 10/17/2018 2.2.0-preview3-35497 is deprecated because it is no longer maintained.
2.2.0-preview2-35157 259,641 9/12/2018 2.2.0-preview2-35157 is deprecated because it is no longer maintained.
2.2.0-preview1-35029 140,830 8/22/2018 2.2.0-preview1-35029 is deprecated because it is no longer maintained.
2.1.1 408,969,408 6/18/2018
2.1.0 339,493,633 5/29/2018
2.1.0-rc1-final 555,584 5/6/2018 2.1.0-rc1-final is deprecated because it is no longer maintained.
2.1.0-preview2-final 520,644 4/10/2018 2.1.0-preview2-final is deprecated because it is no longer maintained.
2.1.0-preview1-final 611,675 2/26/2018 2.1.0-preview1-final is deprecated because it is no longer maintained.
2.0.2 26,360,989 5/7/2018 2.0.2 is deprecated because it is no longer maintained.
2.0.1 43,443,618 3/13/2018 2.0.1 is deprecated because it is no longer maintained.
2.0.0 339,256,584 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 371,337 6/28/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 1,142,720 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.2 16,557,994 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 29,790,929 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 16,724,328 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 175,668 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.2 79,491,196 3/6/2017 1.0.2 is deprecated because it is no longer maintained.
1.0.1 4,674,585 12/12/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 26,763,777 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 1,821,791 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.
1.0.0-rc1-final 649,670 11/18/2015 1.0.0-rc1-final is deprecated because it is no longer maintained.