Serilog.Enrichers.EnrichedProperties 1.0.63

.NET Standard 2.0
dotnet add package Serilog.Enrichers.EnrichedProperties --version 1.0.63
NuGet\Install-Package Serilog.Enrichers.EnrichedProperties -Version 1.0.63
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Serilog.Enrichers.EnrichedProperties" Version="1.0.63" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Serilog.Enrichers.EnrichedProperties --version 1.0.63
#r "nuget: Serilog.Enrichers.EnrichedProperties, 1.0.63"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Serilog.Enrichers.EnrichedProperties as a Cake Addin
#addin nuget:?package=Serilog.Enrichers.EnrichedProperties&version=1.0.63

// Install Serilog.Enrichers.EnrichedProperties as a Cake Tool
#tool nuget:?package=Serilog.Enrichers.EnrichedProperties&version=1.0.63

Serilog Enrichers EnrichedProperties Logo

Enriches Serilog events with information from logger properties that was enriched earlier.

Getting Started

To use the enricher:

  1. Install the NuGet package:

    Install-Package Serilog.Enrichers.EnrichedProperties
    
  2. Then, apply the enricher to your LoggerConfiguration with formated, for example, the console sink, the file sink or the email sink etc. outputTemplate configuration parameter:

    Log.Logger = new LoggerConfiguration()
        .Enrich.WithProperty("Test property", "Added") // for example
        .Enrich.With... // ... other Enrichers here
        .Enrich.WithEnrichedProperties()
        // ...other configuration...
        .WriteTo.Console(outputTemplate:
            "[{Timestamp:HH:mm:ss} {Level:u3}] {Message:lj}{NewLine}{Exception}{NewLine}Enriched properties:{NewLine}{EnrichedProperties}")
        .WriteTo.File("log.txt", outputTemplate: 
            "[{Timestamp:HH:mm:ss} {Level:u3}] {Message:lj}{NewLine}{Exception}{NewLine}Enriched properties:{NewLine}{EnrichedProperties}")
        .WriteTo.Email(outputTemplate:
            "[{Timestamp:HH:mm:ss} {Level:u3}] {Message:lj}{NewLine}{Exception}{NewLine}Enriched properties:{NewLine}{EnrichedProperties}",
            fromEmail: "app@example.com",
            toEmail: "support@example.com",
            mailServer: "smtp.example.com")
        .CreateLogger();
    

    Where built-in the enricher property is EnrichedProperties in output templates.

    The WithEnrichedProperties() enricher will add properties from logger that was enriched earlier to produced events.

For example, the output text in file log.txt will be:

[23:12:28 INF] Has an EnrichedProperties property with properties that was enriched earlier

Enriched properties:
Test property: "Added"

Included enrichers

The package includes:

  • WithEnrichedProperties() - adds properties from logger that was enriched earlier.

Builds status

Build status

Feedback

Please feel free to add your request a feature or report a bug. Thank you in advance!

Thank me!

If you like what I am doing and you would like to thank me, please consider:

Buy me a coffe!

Thank you for your support!


Copyright 2019 Nikolay Chebotov (Unchase) - Provided under the Apache License 2.0.

Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Serilog.Enrichers.EnrichedProperties:

Package Downloads
NSerilogLogger

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.63 180,075 5/1/2019
1.0.62 447 5/1/2019
1.0.54 5,486 12/4/2018
1.0.0 553 12/1/2018