Class ConditionalLevelSink
A custom log event sink that conditionally changes the log event level based on predefined criteria.
Implements
ILogEventSink
Inherited Members
Namespace: Coree.NETStandard.Serilog
Assembly: Coree.NETStandard.dll
Syntax
public class ConditionalLevelSink : ILogEventSink
Remarks
This sink wraps another log event sink and delegates the emission of log events to it, potentially with modified log event levels.
Constructors
| Edit this page View SourceConditionalLevelSink(ILogEventSink, Dictionary<string, LogEventLevel>?)
Initializes a new instance of the ConditionalLevelSink class.
Declaration
public ConditionalLevelSink(ILogEventSink innerSink, Dictionary<string, LogEventLevel>? conditionalLevel)
Parameters
Type | Name | Description |
---|---|---|
ILogEventSink | innerSink | The inner sink to which log events will be forwarded. |
Dictionary<string, LogEventLevel> | conditionalLevel | A dictionary mapping specific criteria to log event levels. |
Exceptions
Type | Condition |
---|---|
ArgumentNullException | Thrown when innerSink is null. |
Methods
| Edit this page View SourceEmit(LogEvent)
Processes and potentially modifies a log event before forwarding it to the inner sink.
Declaration
public void Emit(LogEvent logEvent)
Parameters
Type | Name | Description |
---|---|---|
LogEvent | logEvent | The log event to be emitted. |
Remarks
If a matching criterion is found in the conditionalLevel dictionary, the log event's level is modified accordingly before it is forwarded.
Implements
Serilog.Core.ILogEventSink