Interface ICustomLogger
An interface which can be implemented to supply a custom logger. CustomLogger
Namespace: PSPDFKitFoundation.Log
Assembly: PSPDFKitFoundation.dll
Syntax
public interface ICustomLogger
Methods
Critical(String, String)
Log a critical message.
Declaration
void Critical(string tag, string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | tag | A tag to identify the source the message. |
System.String | message | The error message. |
Debug(String, String)
Log a debug message.
Declaration
void Debug(string tag, string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | tag | A tag to identify the source of the debug message. |
System.String | message | The debug message. |
Error(String, String)
Log an error message.
Declaration
void Error(string tag, string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | tag | A tag to identify the source the message. |
System.String | message | The error message. |
Info(String, String)
Log an information message.
Declaration
void Info(string tag, string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | tag | A tag to identify the source of the message. |
System.String | message | The information message. |
Trace(String, String)
Log a trace message.
Declaration
void Trace(string tag, string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | tag | A tag to identify the source of the message. |
System.String | message | The trace message. |
Warn(String, String)
Log a warning message.
Declaration
void Warn(string tag, string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | tag | A tag to identify the source of the message. |
System.String | message | The warning message. |