Microsoft.Extensions.Logging.Debug
9.0.4
Prefix Reserved
See the version list below for details.
dotnet add package Microsoft.Extensions.Logging.Debug --version 9.0.4
NuGet\Install-Package Microsoft.Extensions.Logging.Debug -Version 9.0.4
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.4" />
<PackageVersion Include="Microsoft.Extensions.Logging.Debug" Version="9.0.4" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" />
paket add Microsoft.Extensions.Logging.Debug --version 9.0.4
#r "nuget: Microsoft.Extensions.Logging.Debug, 9.0.4"
#addin nuget:?package=Microsoft.Extensions.Logging.Debug&version=9.0.4
#tool nuget:?package=Microsoft.Extensions.Logging.Debug&version=9.0.4
About
Microsoft.Extensions.Logging.Debug
provides a 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()
.
Key Features
- Allow logging to the debugger output.
- Provide extensions method for the ILoggingBuilder class to easily enable this Debug logger.
How to Use
using System;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Debug;
namespace DebugLoggerSample
{
class Program
{
static void Main(string[] args)
{
// Create a logger factory with a debug provider
using ILoggerFactory loggerFactory = LoggerFactory.Create(builder => builder.AddDebug());
// Create a logger with the category name of the current class
ILogger<Program> logger = loggerFactory.CreateLogger<Program>();
// Log some messages with different log levels and message templates
logger.LogTrace("This is a trace message.");
logger.LogDebug("This is a debug message.");
logger.LogInformation("Hello {Name}!", "World");
logger.LogWarning("This is a warning message.");
logger.LogError("This is an error message.");
logger.LogCritical("This is a critical message.");
// Use structured logging to capture complex data
var person = new Person { Name = "Alice", Age = 25 };
logger.LogInformation("Created a new person: {@Person}", person);
// Use exception logging to capture the details of an exception
try
{
throw new Exception("Something went wrong.");
}
catch (Exception ex)
{
logger.LogError(ex, "An exception occurred.");
}
Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
}
// A simple class to demonstrate structured logging
class Person
{
public string Name { get; set; }
public int Age { get; set; }
}
}
Main Types
The main types provided by this library are:
DebugLoggerProvider
DebugLoggerFactoryExtensions
Additional Documentation
Related Packages
Microsoft.Extensions.Logging.Abstractions Microsoft.Extensions.Logging Microsoft.Extensions.Logging.Console Microsoft.Extensions.Logging.EventSource Microsoft.Extensions.Logging.EventLog Microsoft.Extensions.Logging.TraceSource
Feedback & Contributing
Microsoft.Extensions.Logging.Debug 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. 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 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.4)
- Microsoft.Extensions.Logging (>= 9.0.4)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.4)
-
.NETStandard 2.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.4)
- Microsoft.Extensions.Logging (>= 9.0.4)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.4)
-
net8.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.4)
- Microsoft.Extensions.Logging (>= 9.0.4)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.4)
-
net9.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.4)
- Microsoft.Extensions.Logging (>= 9.0.4)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.4)
NuGet packages (641)
Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Logging.Debug:
Package | Downloads |
---|---|
Microsoft.Extensions.Hosting
Hosting and startup infrastructures for applications. |
|
Microsoft.AspNetCore.Hosting
ASP.NET Core hosting infrastructure and startup logic for web applications. |
|
Microsoft.AspNetCore
Microsoft.AspNetCore |
|
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download. |
|
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download. |
GitHub repositories (421)
Showing the top 20 popular GitHub repositories that depend on Microsoft.Extensions.Logging.Debug:
Repository | Stars |
---|---|
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/AspNetCore.Docs
Documentation for ASP.NET Core
|
|
chocolatey/choco
Chocolatey - the package manager for Windows
|
|
unoplatform/uno
Open-source platform for building cross-platform native Mobile, Web, Desktop and Embedded apps quickly. Create rich, C#/XAML, single-codebase apps from any IDE. Hot Reload included! 90m+ NuGet Downloads!!
|
|
JeffreySu/WeiXinMPSDK
微信全平台 .NET SDK, Senparc.Weixin for C#,支持 .NET Framework 及 .NET Core、.NET 8.0。已支持微信公众号、小程序、小游戏、微信支付、企业微信/企业号、开放平台、JSSDK、微信周边等全平台。 WeChat SDK for C#.
|
|
ThreeMammals/Ocelot
.NET API Gateway
|
|
microsoft/ailab
Experience, Learn and Code the latest breakthrough innovations with Microsoft AI
|
|
dotnet/eShop
A reference .NET application implementing an eCommerce site
|
|
louthy/language-ext
C# pure functional programming framework - come and get declarative!
|
|
microsoft/FASTER
Fast persistent recoverable log and key-value store + cache, in C# and C++.
|
|
ScottPlot/ScottPlot
Interactive plotting library for .NET
|
|
aspnet/Mvc
[Archived] ASP.NET Core MVC is a model view controller framework for building dynamic web sites with clean separation of concerns, including the merged MVC, Web API, and Web Pages w/ Razor. Project moved to https://github.com/aspnet/AspNetCore
|
|
danielgerlag/workflow-core
Lightweight workflow engine for .NET Standard
|
|
anjoy8/Blog.Core
💖 ASP.NET Core 8.0 全家桶教程,前后端分离后端接口,vue教程姊妹篇,官方文档:
|
|
jasontaylordev/NorthwindTraders
Northwind Traders is a sample application built using ASP.NET Core and Entity Framework Core.
|
|
mono/SkiaSharp
SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library. It provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.
|
|
umbraco/Umbraco-CMS
Umbraco is a free and open source .NET content management system helping you deliver delightful digital experiences.
|
|
immense/Remotely
A remote control and remote scripting solution, built with .NET 8, Blazor, and SignalR.
|
Version | Downloads | Last updated | |
---|---|---|---|
10.0.0-preview.3.25171.5 | 5,896 | 4/10/2025 | |
10.0.0-preview.2.25163.2 | 10,360 | 3/18/2025 | |
10.0.0-preview.1.25080.5 | 11,753 | 2/25/2025 | |
9.0.4 | 771,570 | 4/8/2025 | |
9.0.3 | 2,215,793 | 3/11/2025 | |
9.0.2 | 3,319,918 | 2/11/2025 | |
9.0.1 | 3,521,016 | 1/14/2025 | |
9.0.0 | 9,005,810 | 11/12/2024 | |
9.0.0-rc.2.24473.5 | 111,702 | 10/8/2024 | |
9.0.0-rc.1.24431.7 | 82,614 | 9/10/2024 | |
9.0.0-preview.7.24405.7 | 41,561 | 8/13/2024 | |
9.0.0-preview.6.24327.7 | 44,220 | 7/9/2024 | |
9.0.0-preview.5.24306.7 | 29,693 | 6/11/2024 | |
9.0.0-preview.4.24266.19 | 27,326 | 5/21/2024 | |
9.0.0-preview.3.24172.9 | 110,902 | 4/11/2024 | |
9.0.0-preview.2.24128.5 | 31,358 | 3/12/2024 | |
9.0.0-preview.1.24080.9 | 56,571 | 2/13/2024 | |
8.0.1 | 30,996,494 | 10/8/2024 | |
8.0.0 | 99,908,346 | 11/14/2023 | |
8.0.0-rc.2.23479.6 | 179,113 | 10/10/2023 | |
8.0.0-rc.1.23419.4 | 138,488 | 9/12/2023 | |
8.0.0-preview.7.23375.6 | 60,043 | 8/8/2023 | |
8.0.0-preview.6.23329.7 | 77,629 | 7/11/2023 | |
8.0.0-preview.5.23280.8 | 61,312 | 6/13/2023 | |
8.0.0-preview.4.23259.5 | 275,276 | 5/16/2023 | |
8.0.0-preview.3.23174.8 | 109,212 | 4/11/2023 | |
8.0.0-preview.2.23128.3 | 32,909 | 3/14/2023 | |
8.0.0-preview.1.23110.8 | 93,268 | 2/21/2023 | |
7.0.0 | 76,890,578 | 11/7/2022 | |
7.0.0-rc.2.22472.3 | 153,965 | 10/11/2022 | |
7.0.0-rc.1.22426.10 | 86,635 | 9/14/2022 | |
7.0.0-preview.7.22375.6 | 58,062 | 8/9/2022 | |
7.0.0-preview.6.22324.4 | 48,275 | 7/12/2022 | |
7.0.0-preview.5.22301.12 | 43,760 | 6/14/2022 | |
7.0.0-preview.4.22229.4 | 51,073 | 5/10/2022 | |
7.0.0-preview.3.22175.4 | 47,364 | 4/13/2022 | |
7.0.0-preview.2.22152.2 | 15,015 | 3/14/2022 | |
7.0.0-preview.1.22076.8 | 25,909 | 2/17/2022 | |
6.0.1 | 91,614 | 11/12/2024 | |
6.0.0 | 185,389,527 | 11/8/2021 | |
6.0.0-rc.2.21480.5 | 376,299 | 10/12/2021 | |
6.0.0-rc.1.21451.13 | 264,449 | 9/14/2021 | |
6.0.0-preview.7.21377.19 | 130,209 | 8/10/2021 | |
6.0.0-preview.6.21352.12 | 46,019 | 7/14/2021 | |
6.0.0-preview.5.21301.5 | 30,258 | 6/15/2021 | |
6.0.0-preview.4.21253.7 | 20,159 | 5/24/2021 | |
6.0.0-preview.3.21201.4 | 37,242 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 80,886 | 3/11/2021 | |
6.0.0-preview.1.21102.12 | 36,730 | 2/12/2021 | |
5.0.0 | 110,826,807 | 11/9/2020 | |
5.0.0-rc.2.20475.5 | 98,545 | 10/13/2020 | |
5.0.0-rc.1.20451.14 | 48,412 | 9/14/2020 | |
5.0.0-preview.8.20407.11 | 31,808 | 8/25/2020 | |
5.0.0-preview.7.20364.11 | 34,700 | 7/21/2020 | |
5.0.0-preview.6.20305.6 | 24,751 | 6/25/2020 | |
5.0.0-preview.5.20278.1 | 12,518 | 6/10/2020 | |
5.0.0-preview.4.20251.6 | 28,260 | 5/18/2020 | |
5.0.0-preview.3.20215.2 | 15,930 | 4/23/2020 | |
5.0.0-preview.2.20160.3 | 124,009 | 4/2/2020 | |
5.0.0-preview.1.20120.4 | 27,672 | 3/16/2020 | |
3.1.32 | 2,262,686 | 12/13/2022 | |
3.1.31 | 553,542 | 11/8/2022 | |
3.1.30 | 1,097,519 | 10/11/2022 | |
3.1.29 | 332,099 | 9/13/2022 | |
3.1.28 | 479,800 | 8/9/2022 | |
3.1.27 | 349,064 | 7/12/2022 | |
3.1.26 | 314,730 | 6/14/2022 | |
3.1.25 | 434,979 | 5/10/2022 | |
3.1.24 | 367,458 | 4/11/2022 | |
3.1.23 | 776,539 | 3/8/2022 | |
3.1.22 | 9,162,286 | 12/14/2021 | |
3.1.21 | 1,614,218 | 11/7/2021 | |
3.1.20 | 831,146 | 10/11/2021 | |
3.1.19 | 856,806 | 9/14/2021 | |
3.1.18 | 1,910,512 | 8/10/2021 | |
3.1.17 | 1,329,007 | 7/13/2021 | |
3.1.16 | 1,753,156 | 6/8/2021 | |
3.1.15 | 2,463,562 | 5/11/2021 | |
3.1.14 | 2,336,479 | 4/6/2021 | |
3.1.13 | 2,461,589 | 3/9/2021 | |
3.1.12 | 2,435,758 | 2/9/2021 | |
3.1.11 | 2,692,303 | 1/12/2021 | |
3.1.10 | 6,204,049 | 11/9/2020 | |
3.1.9 | 8,243,482 | 10/13/2020 | |
3.1.8 | 10,743,044 | 9/8/2020 | |
3.1.7 | 7,078,817 | 8/11/2020 | |
3.1.6 | 9,901,625 | 7/14/2020 | |
3.1.5 | 11,172,698 | 6/9/2020 | |
3.1.4 | 7,384,517 | 5/12/2020 | |
3.1.3 | 11,695,715 | 3/24/2020 | |
3.1.2 | 10,585,089 | 2/18/2020 | |
3.1.1 | 9,883,463 | 1/14/2020 | |
3.1.0 | 23,270,546 | 12/3/2019 | |
3.1.0-preview3.19553.2 | 35,621 | 11/13/2019 | |
3.1.0-preview2.19525.4 | 30,976 | 11/1/2019 | |
3.1.0-preview1.19506.1 | 922,420 | 10/15/2019 | |
3.0.3 | 261,315 | 2/18/2020 | |
3.0.2 | 739,326 | 1/14/2020 | |
3.0.1 | 1,365,428 | 11/18/2019 | |
3.0.0 | 19,099,767 | 9/23/2019 | |
3.0.0-rc1.19456.10 | 27,778 | 9/16/2019 | |
3.0.0-preview9.19423.4 | 49,820 | 9/4/2019 | |
3.0.0-preview8.19405.4 | 84,634 | 8/13/2019 | |
3.0.0-preview7.19362.4 | 52,995 | 7/23/2019 | |
3.0.0-preview6.19304.6 | 59,499 | 6/12/2019 | |
3.0.0-preview5.19227.9 | 82,515 | 5/6/2019 | |
3.0.0-preview4.19216.2 | 11,289 | 4/18/2019 | |
3.0.0-preview3.19153.1 | 44,522 | 3/6/2019 | |
3.0.0-preview.19074.2 | 86,643 | 1/29/2019 | |
3.0.0-preview.18572.1 | 3,309 | 12/4/2018 | |
2.2.0 | 68,133,039 | 12/3/2018 | |
2.2.0-preview3-35497 | 90,458 | 10/17/2018 | |
2.2.0-preview2-35157 | 25,912 | 9/12/2018 | |
2.2.0-preview1-35029 | 19,957 | 8/22/2018 | |
2.1.1 | 35,640,404 | 6/18/2018 | |
2.1.0 | 8,440,257 | 5/29/2018 | |
2.1.0-rc1-final | 59,384 | 5/6/2018 | |
2.1.0-preview2-final | 38,809 | 4/10/2018 | |
2.1.0-preview1-final | 117,852 | 2/26/2018 | |
2.0.2 | 5,352,805 | 5/7/2018 | |
2.0.1 | 6,433,807 | 3/13/2018 | |
2.0.0 | 26,725,686 | 8/11/2017 | |
2.0.0-preview2-final | 87,993 | 6/28/2017 | |
2.0.0-preview1-final | 53,146 | 5/10/2017 | |
1.1.2 | 2,459,156 | 5/9/2017 | |
1.1.1 | 2,276,640 | 3/6/2017 | |
1.1.0 | 1,105,656 | 11/16/2016 | |
1.1.0-preview1-final | 12,261 | 10/24/2016 | |
1.0.2 | 1,370,340 | 3/6/2017 | |
1.0.1 | 491,679 | 12/12/2016 | |
1.0.0 | 2,975,110 | 6/27/2016 | |
1.0.0-rc2-final | 71,134 | 5/16/2016 | |
1.0.0-rc1-final | 279,643 | 11/18/2015 |