Interface IAMNetLogger
Minimal logger abstraction used by default wrapper listeners.
Namespace: ApacheMinaSSHD.NET.Wrapper.Logging
Assembly: ApacheMinaSSHD.NET.Wrapper.dll
Syntax
public interface IAMNetLogger
Methods
| Edit this page View SourceDebug(string, Exception?)
Writes a debug log message.
Declaration
void Debug(string message, Exception? ex = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | The message to write. |
| Exception | ex | Optional exception details. |
Error(string, Exception?)
Writes an error log message.
Declaration
void Error(string message, Exception? ex = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | The message to write. |
| Exception | ex | Optional exception details. |
Info(string)
Writes an informational log message.
Declaration
void Info(string message)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | The message to write. |
Trace(string, Exception?)
Writes a trace log message.
Declaration
void Trace(string message, Exception? ex = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | The message to write. |
| Exception | ex | Optional exception details. |
Warn(string, Exception?)
Writes a warning log message.
Declaration
void Warn(string message, Exception? ex = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | The message to write. |
| Exception | ex | Optional exception details. |