Microsoft.Extensions.Logging.Debug 9.0.0-rc.2.24473.5
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.
Showing the top 20 packages that depend on Microsoft.Extensions.Logging.Debug.
Packages | Downloads |
---|---|
Microsoft.AspNetCore
Microsoft.AspNetCore
|
7 |
Microsoft.AspNetCore
Microsoft.AspNetCore
|
8 |
Microsoft.AspNetCore
Microsoft.AspNetCore
|
9 |
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.
|
7 |
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.
|
7 |
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.
|
9 |
Microsoft.Extensions.Hosting
Hosting and startup infrastructures for applications.
|
7 |
Microsoft.Extensions.Hosting
Hosting and startup infrastructures for applications.
|
8 |
Microsoft.Extensions.Hosting
Hosting and startup infrastructures for applications.
|
9 |
Microsoft.Extensions.Hosting
Hosting and startup infrastructures for applications.
|
15 |
Microsoft.Extensions.Hosting
Hosting and startup infrastructures for applications.
|
16 |
Microsoft.Extensions.Hosting
Hosting and startup infrastructures for applications.
|
134 |
Microsoft.Extensions.Hosting
.NET Core hosting and startup infrastructures for applications.
|
12 |
Microsoft.Extensions.Hosting
.NET Core hosting and startup infrastructures for applications.
|
5,329 |
Microsoft.Extensions.Hosting
.NET Core hosting and startup infrastructures for applications.
|
8,809 |
Ocelot
This project is aimed at people using .NET running a micro services / service orientated architecture that need a unified point of entry into their system. In particular I want easy integration with IdentityServer reference and bearer tokens. We have been unable to find this in my current workplace without having to write our own Javascript middlewares to handle the IdentityServer reference tokens. We would rather use the IdentityServer code that already exists to do this. Ocelot is a bunch of middlewares in a specific order. Ocelot manipulates the HttpRequest object into a state specified by its configuration until it reaches a request builder middleware where it creates a HttpRequestMessage object which is used to make a request to a downstream service. The middleware that makes the request is the last thing in the Ocelot pipeline. It does not call the next middleware. The response from the downstream service is stored in a per request scoped repository and retrived as the requests goes back up the Ocelot pipeline. There is a piece of middleware that maps the HttpResponseMessage onto the HttpResponse object and that is returned to the client. That is basically it with a bunch of other features.
|
11 |
https://go.microsoft.com/fwlink/?LinkID=799421
.NET Framework 4.6.2
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Logging (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.0-rc.2.24473.5)
.NET Standard 2.0
- Microsoft.Extensions.Logging (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.0-rc.2.24473.5)
.NET 9.0
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Logging (>= 9.0.0-rc.2.24473.5)
.NET 8.0
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Logging (>= 9.0.0-rc.2.24473.5)