Class SourceContextShortEnricher
A Serilog enricher that adds the "SourceContextShort" property of log events by trimming generic type indicators, simplifying namespaces, and optionally removing specified suffixes. This can make the log source context more readable and concise in log outputs.
Implements
Inherited Members
Namespace: Coree.NETStandard.Serilog
Assembly: Coree.NETStandard.dll
Syntax
public class SourceContextShortEnricher : ILogEventEnricher
Constructors
| Edit this page View SourceSourceContextShortEnricher()
Initializes a new instance of the SourceContextShortEnricher class with default settings. By default, it trims generic type indicators, simplifies namespaces to their last component, applies a default padding, and removes common suffixes like "Service", "Services", "AsyncCommand", and "Command".
Declaration
public SourceContextShortEnricher()
SourceContextShortEnricher(bool, bool, int, string[]?)
Initializes a new instance of the SourceContextShortEnricher class with customizable settings.
Declaration
public SourceContextShortEnricher(bool trimGenericTypeIndicator = true, bool simplifyNamespace = true, int sourceContextPadding = 15, string[]? suffixesToRemove = null)
Parameters
Type | Name | Description |
---|---|---|
bool | trimGenericTypeIndicator | If true, trims the generic type indicator from the source context. |
bool | simplifyNamespace | If true, simplifies the namespace to only include the last component. |
int | sourceContextPadding | The padding applied to the modified source context for alignment in logs. |
string[] | suffixesToRemove | An array of suffixes to remove from the source context, enhancing readability. |
Methods
| Edit this page View SourceEnrich(LogEvent, ILogEventPropertyFactory)
A Serilog enricher that adds the "SourceContextShort" property of log events by trimming generic type indicators, simplifying namespaces, and optionally removing specified suffixes. This can make the log source context more readable and concise in log outputs.
Declaration
public void Enrich(LogEvent logEvent, ILogEventPropertyFactory propertyFactory)
Parameters
Type | Name | Description |
---|---|---|
LogEvent | logEvent | The log event to enrich. |
ILogEventPropertyFactory | propertyFactory | The factory used to create new log event properties. |