Interface IDynamicMessageProcessor
Provides the ability to process each log message before it is sent to the Console
Namespace: Steeltoe.Extensions.Logging
Assembly: Steeltoe.Extensions.Logging.Abstractions.dll
Syntax
public interface IDynamicMessageProcessor
Methods
| Edit this page View SourceProcess(String)
Called for each log message just after the parameters have been formatted into the log string but before the time stamp, category, and level have been applied.
Declaration
string Process(string inputLogMessage)
Parameters
Type | Name | Description |
---|---|---|
System.String | inputLogMessage | The incoming log message |
Returns
Type | Description |
---|---|
System.String | The updated log message |