Nito.Logging
2.0.0
Prefix Reserved
dotnet add package Nito.Logging --version 2.0.0
NuGet\Install-Package Nito.Logging -Version 2.0.0
<PackageReference Include="Nito.Logging" Version="2.0.0" />
paket add Nito.Logging --version 2.0.0
#r "nuget: Nito.Logging, 2.0.0"
// Install Nito.Logging as a Cake Addin #addin nuget:?package=Nito.Logging&version=2.0.0 // Install Nito.Logging as a Cake Tool #tool nuget:?package=Nito.Logging&version=2.0.0
Nito.Logging
A library for using scopes with Microsoft.Extensions.Logging.
What It Does
This library has two parts:
DataScopes
provides theBeginDataScope
extension methods forILogger
, which allow you to attach name/value pairs of metadata onto your log messages.ExceptionLoggingScope
captures logging scopes when an exception is thrown, and applies those logging scopes when the exception is logged. In other words, if you find your exception logs are missing useful information from your logging contexts, install this library and enjoy rich logs again!
Getting Started
First, install the Nito.Logging
package.
To attach data scopes to your logs, call BeginDataScope
on any ILogger
or ILogger<T>
. You can pass an anonymous object, any number of (string, object)
tuples, or a collection of KeyValuePair<string, object>
(such as a Dictionary<string, object>
). See the unit tests for examples.
To preserve logging scopes for exceptions, add a call to AddExceptionLoggingScopes()
in your service registration after all loggers have been configured.
Your service registration will look something like this:
public void ConfigureServices(IServiceCollection services)
{
/* Configure all loggers here */
...
services.AddExceptionLoggingScopes();
...
}
Your exception logging will look something like this:
// This example uses custom middleware.
// It's also possible to retrieve and log the exception from an error controller if using the standard exception handling middleware.
public class ExceptionLoggingMiddleware
{
private readonly RequestDelegate _next;
private readonly ILogger<ExceptionLoggingMiddleware> _logger;
public ExceptionLoggingMiddleware(RequestDelegate next, ILogger<ExceptionLoggingMiddleware> logger)
{
_next = next;
_logger = logger;
}
public async Task Invoke(HttpContext context)
{
try
{
await _next(context);
}
catch (Exception ex)
{
_logger.Log(ex, "An error occurred.");
throw;
}
}
}
// Don't forget to register the middleware (early in the pipeline):
app.UseMiddleware<ExceptionLoggingMiddleware>();
Alternatives
- Throw context enricher for Serilog - essentially the same as
ExceptionLoggingScope
, but for Serilog only.
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.6.2
- Nito.Logging.DataScopes (>= 2.0.0)
- Nito.Logging.ExceptionLoggingScope (>= 2.0.0)
-
.NETStandard 2.0
- Nito.Logging.DataScopes (>= 2.0.0)
- Nito.Logging.ExceptionLoggingScope (>= 2.0.0)
-
net6.0
- Nito.Logging.DataScopes (>= 2.0.0)
- Nito.Logging.ExceptionLoggingScope (>= 2.0.0)
-
net8.0
- Nito.Logging.DataScopes (>= 2.0.0)
- Nito.Logging.ExceptionLoggingScope (>= 2.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.0 | 185 | 10/1/2024 |
1.0.1 | 3,442 | 2/19/2021 |
1.0.0 | 541 | 10/25/2020 |
1.0.0-pre06 | 408 | 10/25/2020 |
1.0.0-pre05 | 337 | 10/24/2020 |
1.0.0-pre04 | 346 | 9/13/2020 |
1.0.0-pre03 | 481 | 9/12/2020 |
1.0.0-pre02 | 354 | 9/12/2020 |