Serilog.Enrichers.EnrichedProperties 1.0.54

There is a newer version of this package available.
See the version list below for details.
dotnet add package Serilog.Enrichers.EnrichedProperties --version 1.0.54
NuGet\Install-Package Serilog.Enrichers.EnrichedProperties -Version 1.0.54
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.54" />
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.54
#r "nuget: Serilog.Enrichers.EnrichedProperties, 1.0.54"
#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.54

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

Serilog.Enrichers.EnrichedProperties

Build status AppVeyor tests

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

GitHub release Github Releases GitHub Release Date

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.

Copyright 2018 Unchase - Provided under the Crates.io

Product 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 was computed.  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. 
.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 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
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 264,989 5/1/2019
1.0.62 601 5/1/2019
1.0.54 5,637 12/4/2018
1.0.0 663 12/1/2018