Interface IDynamicMessageProcessor
Provides the ability to decorate log messages before they are sent downstream.
Namespace: Steeltoe.Logging
Assembly: Steeltoe.Logging.Abstractions.dll
Syntax
public interface IDynamicMessageProcessor
Methods
| Edit this page View SourceProcess(String)
Replaces the contents of an incoming log message.
Declaration
string Process(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The incoming message text, just after formatting its parameters, but before the time stamp, category, level, exception and scopes are added. |
Returns
Type | Description |
---|---|
System.String | The decorated log message text. |