Skip to content

Library for using scopes with Microsoft.Extensions.Logging.

License

Notifications You must be signed in to change notification settings

StephenCleary/Logging

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Logo

Nito.Logging Build status codecov NuGet version API docs

A library for using scopes with Microsoft.Extensions.Logging.

What It Does

This library has two parts:

  1. DataScopes provides the BeginDataScope extension methods for ILogger, which allow you to attach name/value pairs of metadata onto your log messages.
  2. 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();
    ...
}

Now all logs of exceptions will include the logging scopes at the point they were thrown!

Alternatives

About

Library for using scopes with Microsoft.Extensions.Logging.

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Languages