Microsoft.Extensions.Logging.Console
10.0.0-preview.1.25080.5
Prefix Reserved
See the version list below for details.
dotnet add package Microsoft.Extensions.Logging.Console --version 10.0.0-preview.1.25080.5
NuGet\Install-Package Microsoft.Extensions.Logging.Console -Version 10.0.0-preview.1.25080.5
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.0-preview.1.25080.5" />
<PackageVersion Include="Microsoft.Extensions.Logging.Console" Version="10.0.0-preview.1.25080.5" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" />
paket add Microsoft.Extensions.Logging.Console --version 10.0.0-preview.1.25080.5
#r "nuget: Microsoft.Extensions.Logging.Console, 10.0.0-preview.1.25080.5"
#addin nuget:?package=Microsoft.Extensions.Logging.Console&version=10.0.0-preview.1.25080.5&prerelease
#tool nuget:?package=Microsoft.Extensions.Logging.Console&version=10.0.0-preview.1.25080.5&prerelease
About
Microsoft.Extensions.Logging.Console
provides a Console logger provider implementation for Microsoft.Extensions.Logging. It provides extension methods for the ILoggingBuilder and ILoggerProviderConfiguration classes.
Key Features
- Allow logging to the console using the Microsoft.Extensions.Logging package.
- Provide extension methods for the ILoggingBuilder and ILoggerProviderConfiguration classes.
How to Use
using System;
using Microsoft.Extensions.Logging;
namespace ConsoleLoggerSample
{
class Program
{
static void Main(string[] args)
{
// Create a logger factory with a console provider
using ILoggerFactory loggerFactory = LoggerFactory.Create(builder => builder.AddConsole());
// 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:
ConsoleLoggerProvider
ConsoleLoggerSettings
ConsoleLoggerOptions
ConsoleLoggerExtensions
ConsoleFormatter
ConsoleFormatterOptions
JsonConsoleFormatterOptions
SimpleConsoleFormatterOptions
Additional Documentation
Related Packages
Microsoft.Extensions.Logging.Abstractions Microsoft.Extensions.Logging Microsoft.Extensions.Logging.Debug Microsoft.Extensions.Logging.EventSource Microsoft.Extensions.Logging.EventLog Microsoft.Extensions.Logging.TraceSource
Feedback & Contributing
Microsoft.Extensions.Logging.Console 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. net10.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.Bcl.AsyncInterfaces (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Logging (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Logging.Configuration (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Options (>= 10.0.0-preview.1.25080.5)
- System.Buffers (>= 4.6.0)
- System.Text.Json (>= 10.0.0-preview.1.25080.5)
-
.NETStandard 2.0
- Microsoft.Bcl.AsyncInterfaces (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Logging (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Logging.Configuration (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Options (>= 10.0.0-preview.1.25080.5)
- System.Buffers (>= 4.6.0)
- System.Text.Json (>= 10.0.0-preview.1.25080.5)
-
net10.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Logging (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Logging.Configuration (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Options (>= 10.0.0-preview.1.25080.5)
-
net8.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Logging (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Logging.Configuration (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Options (>= 10.0.0-preview.1.25080.5)
- System.Text.Json (>= 10.0.0-preview.1.25080.5)
-
net9.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Logging (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Logging.Configuration (>= 10.0.0-preview.1.25080.5)
- Microsoft.Extensions.Options (>= 10.0.0-preview.1.25080.5)
- System.Text.Json (>= 10.0.0-preview.1.25080.5)
NuGet packages (1.3K)
Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Logging.Console:
Package | Downloads |
---|---|
Microsoft.Extensions.Hosting
Hosting and startup infrastructures for applications. |
|
Microsoft.AspNetCore
Microsoft.AspNetCore |
|
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/a4938d07a5127ffad8466ddf703a6b5b21f4b0c9 |
|
Amazon.JSII.Runtime
.NET client for jsii runtime |
|
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. |
GitHub repositories (470)
Showing the top 20 popular GitHub repositories that depend on Microsoft.Extensions.Logging.Console:
Repository | Stars |
---|---|
dotnet/aspnetcore
ASP.NET Core is a cross-platform .NET framework for building modern cloud-based web applications on Windows, Mac, or Linux.
|
|
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.
|
|
BeyondDimension/SteamTools
🛠「Watt Toolkit」是一个开源跨平台的多功能 Steam 工具箱。
|
|
dotnet/roslyn
The Roslyn .NET compiler provides C# and Visual Basic languages with rich code analysis APIs.
|
|
bitwarden/server
Bitwarden infrastructure/backend (API, database, Docker, etc).
|
|
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!
|
|
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
|
|
dodyg/practical-aspnetcore
Practical samples of ASP.NET Core 10 Preview 2, 9, 8.0, 7.0, 6.0, 5.0, 3.1, 2.2, and 2.1,projects you can use. Readme contains explanations on all projects.
|
|
HangfireIO/Hangfire
An easy way to perform background job processing in .NET and .NET Core applications. No Windows Service or separate process required
|
|
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!!
|
|
dotnet/machinelearning
ML.NET is an open source and cross-platform machine learning framework for .NET.
|
|
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
|
|
RayWangQvQ/BiliBiliToolPro
B 站(bilibili)自动任务工具,支持docker、青龙、k8s等多种部署方式。敏感肌也能用。
|
Version | Downloads | Last updated | |
---|---|---|---|
10.0.0-preview.3.25171.5 | 0 | 8 hours ago | |
10.0.0-preview.2.25163.2 | 8,009 | 23 days ago | |
10.0.0-preview.1.25080.5 | 11,244 | 2 months ago | |
9.0.4 | 53,549 | 2 days ago | |
9.0.3 | 1,755,237 | a month ago | |
9.0.2 | 3,144,295 | 2 months ago | |
9.0.1 | 3,627,140 | 3 months ago | |
9.0.0 | 9,041,746 | 5 months ago | |
9.0.0-rc.2.24473.5 | 116,480 | 6 months ago | |
9.0.0-rc.1.24431.7 | 74,239 | 7 months ago | |
9.0.0-preview.7.24405.7 | 45,460 | 8 months ago | |
9.0.0-preview.6.24327.7 | 53,458 | 9 months ago | |
9.0.0-preview.5.24306.7 | 36,161 | 10 months ago | |
9.0.0-preview.4.24266.19 | 34,930 | 5/21/2024 | |
9.0.0-preview.3.24172.9 | 115,059 | 4/11/2024 | |
9.0.0-preview.2.24128.5 | 35,658 | 3/12/2024 | |
9.0.0-preview.1.24080.9 | 69,360 | 2/13/2024 | |
8.0.1 | 29,669,188 | 6 months ago | |
8.0.0 | 106,316,345 | 11/14/2023 | |
8.0.0-rc.2.23479.6 | 178,145 | 10/10/2023 | |
8.0.0-rc.1.23419.4 | 214,343 | 9/12/2023 | |
8.0.0-preview.7.23375.6 | 60,963 | 8/8/2023 | |
8.0.0-preview.6.23329.7 | 90,672 | 7/11/2023 | |
8.0.0-preview.5.23280.8 | 58,957 | 6/13/2023 | |
8.0.0-preview.4.23259.5 | 272,564 | 5/16/2023 | |
8.0.0-preview.3.23174.8 | 111,087 | 4/11/2023 | |
8.0.0-preview.2.23128.3 | 36,406 | 3/14/2023 | |
8.0.0-preview.1.23110.8 | 96,329 | 2/21/2023 | |
7.0.0 | 82,822,425 | 11/7/2022 | |
7.0.0-rc.2.22472.3 | 142,175 | 10/11/2022 | |
7.0.0-rc.1.22426.10 | 80,393 | 9/14/2022 | |
7.0.0-preview.7.22375.6 | 61,742 | 8/9/2022 | |
7.0.0-preview.6.22324.4 | 48,769 | 7/12/2022 | |
7.0.0-preview.5.22301.12 | 46,408 | 6/14/2022 | |
7.0.0-preview.4.22229.4 | 54,329 | 5/10/2022 | |
7.0.0-preview.3.22175.4 | 51,659 | 4/13/2022 | |
7.0.0-preview.2.22152.2 | 14,913 | 3/14/2022 | |
7.0.0-preview.1.22076.8 | 28,580 | 2/17/2022 | |
6.0.1 | 135,291 | 5 months ago | |
6.0.0 | 204,599,361 | 11/8/2021 | |
6.0.0-rc.2.21480.5 | 385,075 | 10/12/2021 | |
6.0.0-rc.1.21451.13 | 272,952 | 9/14/2021 | |
6.0.0-preview.7.21377.19 | 139,102 | 8/10/2021 | |
6.0.0-preview.6.21352.12 | 50,466 | 7/14/2021 | |
6.0.0-preview.5.21301.5 | 35,323 | 6/15/2021 | |
6.0.0-preview.4.21253.7 | 23,356 | 5/24/2021 | |
6.0.0-preview.3.21201.4 | 48,253 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 75,994 | 3/11/2021 | |
6.0.0-preview.1.21102.12 | 54,383 | 2/12/2021 | |
5.0.0 | 142,411,478 | 11/9/2020 | |
5.0.0-rc.2.20475.5 | 108,708 | 10/13/2020 | |
5.0.0-rc.1.20451.14 | 49,683 | 9/14/2020 | |
5.0.0-preview.8.20407.11 | 327,801 | 8/25/2020 | |
5.0.0-preview.7.20364.11 | 35,940 | 7/21/2020 | |
5.0.0-preview.6.20305.6 | 24,634 | 6/25/2020 | |
5.0.0-preview.5.20278.1 | 21,487 | 6/10/2020 | |
5.0.0-preview.4.20251.6 | 31,862 | 5/18/2020 | |
5.0.0-preview.3.20215.2 | 29,145 | 4/23/2020 | |
5.0.0-preview.2.20160.3 | 51,621 | 4/2/2020 | |
5.0.0-preview.1.20120.4 | 25,759 | 3/16/2020 | |
3.1.32 | 4,923,945 | 12/13/2022 | |
3.1.31 | 1,008,570 | 11/8/2022 | |
3.1.30 | 1,303,376 | 10/11/2022 | |
3.1.29 | 509,137 | 9/13/2022 | |
3.1.28 | 1,151,554 | 8/9/2022 | |
3.1.27 | 1,047,676 | 7/12/2022 | |
3.1.26 | 532,270 | 6/14/2022 | |
3.1.25 | 972,484 | 5/10/2022 | |
3.1.24 | 588,853 | 4/11/2022 | |
3.1.23 | 1,574,312 | 3/8/2022 | |
3.1.22 | 4,383,549 | 12/14/2021 | |
3.1.21 | 2,538,034 | 11/7/2021 | |
3.1.20 | 1,131,736 | 10/11/2021 | |
3.1.19 | 1,124,011 | 9/14/2021 | |
3.1.18 | 2,573,051 | 8/10/2021 | |
3.1.17 | 1,753,909 | 7/13/2021 | |
3.1.16 | 2,135,436 | 6/8/2021 | |
3.1.15 | 2,890,695 | 5/11/2021 | |
3.1.14 | 2,961,220 | 4/6/2021 | |
3.1.13 | 4,415,837 | 3/9/2021 | |
3.1.12 | 3,563,781 | 2/9/2021 | |
3.1.11 | 3,384,303 | 1/12/2021 | |
3.1.10 | 7,703,833 | 11/9/2020 | |
3.1.9 | 9,889,351 | 10/13/2020 | |
3.1.8 | 12,049,713 | 9/8/2020 | |
3.1.7 | 8,469,274 | 8/11/2020 | |
3.1.6 | 10,979,889 | 7/14/2020 | |
3.1.5 | 12,833,658 | 6/9/2020 | |
3.1.4 | 9,624,826 | 5/12/2020 | |
3.1.3 | 14,351,059 | 3/24/2020 | |
3.1.2 | 12,442,147 | 2/18/2020 | |
3.1.1 | 11,565,047 | 1/14/2020 | |
3.1.0 | 25,933,144 | 12/3/2019 | |
3.1.0-preview3.19553.2 | 43,041 | 11/13/2019 | |
3.1.0-preview2.19525.4 | 14,517 | 11/1/2019 | |
3.1.0-preview1.19506.1 | 18,202 | 10/15/2019 | |
3.0.3 | 417,230 | 2/18/2020 | |
3.0.2 | 776,224 | 1/14/2020 | |
3.0.1 | 1,469,243 | 11/18/2019 | |
3.0.0 | 17,493,157 | 9/23/2019 | |
3.0.0-rc1.19456.10 | 31,659 | 9/16/2019 | |
3.0.0-preview9.19423.4 | 43,814 | 9/4/2019 | |
3.0.0-preview8.19405.4 | 88,002 | 8/13/2019 | |
3.0.0-preview7.19362.4 | 54,439 | 7/23/2019 | |
3.0.0-preview6.19304.6 | 87,743 | 6/12/2019 | |
3.0.0-preview5.19227.9 | 72,304 | 5/6/2019 | |
3.0.0-preview4.19216.2 | 19,716 | 4/18/2019 | |
3.0.0-preview3.19153.1 | 93,164 | 3/6/2019 | |
3.0.0-preview.19074.2 | 68,670 | 1/29/2019 | |
3.0.0-preview.18572.1 | 6,207 | 12/4/2018 | |
2.2.0 | 71,323,721 | 12/3/2018 | |
2.2.0-preview3-35497 | 105,329 | 10/17/2018 | |
2.2.0-preview2-35157 | 40,367 | 9/12/2018 | |
2.2.0-preview1-35029 | 25,700 | 8/22/2018 | |
2.1.1 | 37,466,021 | 6/18/2018 | |
2.1.0 | 7,562,279 | 5/29/2018 | |
2.1.0-rc1-final | 65,566 | 5/6/2018 | |
2.1.0-preview2-final | 57,456 | 4/10/2018 | |
2.1.0-preview1-final | 149,620 | 2/26/2018 | |
2.0.2 | 6,495,716 | 5/7/2018 | |
2.0.1 | 6,782,998 | 3/13/2018 | |
2.0.0 | 24,987,785 | 8/11/2017 | |
2.0.0-preview2-final | 101,312 | 6/28/2017 | |
2.0.0-preview1-final | 60,305 | 5/10/2017 | |
1.1.2 | 3,881,407 | 5/9/2017 | |
1.1.1 | 5,269,843 | 3/6/2017 | |
1.1.0 | 3,997,376 | 11/16/2016 | |
1.1.0-preview1-final | 25,278 | 10/24/2016 | |
1.0.2 | 1,013,521 | 3/6/2017 | |
1.0.1 | 638,143 | 12/12/2016 | |
1.0.0 | 1,390,197 | 6/27/2016 | |
1.0.0-rc2-final | 91,683 | 5/16/2016 | |
1.0.0-rc1-final | 314,281 | 11/18/2015 |