Interface ICommunicatorLogger
Used to log messages from communicators. Thread-safe.
Namespace: Worldline.Acquiring.Sdk.Logging
Assembly: Worldline.Acquiring.Sdk.dll
Syntax
public interface ICommunicatorLogger
Methods
Log(string, Exception)
Logs a throwable with an accompanying message.
Declaration
void Log(string message, Exception thrown)
Parameters
Type | Name | Description |
---|---|---|
string | message | Message accompanying the throwable. |
Exception | thrown | The throwable to log. |
Log(string)
Log the specified message.
Declaration
void Log(string message)
Parameters
Type | Name | Description |
---|---|---|
string | message | The message to log. |