ILogger
Leave feedback
On this page
public interface ILogger
Defines the methods that are used to perform logging.
| Method | Description |
|---|---|
| trace(String message) | Writes trace log message; Trace log messages provides generally useful information about application flow. |
| warning(String message) | Writes warning log message; Warning log messages provides information about unexpected and recoverable event in application flow. |
| error(String message, Exception exception) | Writes error log message; Error log messages provides information about unrecoverable events in application flow. |
public abstract void trace(String message)
Writes trace log message; Trace log messages provides generally useful information about application flow.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| message | java.lang.String | The trace message. |
public abstract void warning(String message)
Writes warning log message; Warning log messages provides information about unexpected and recoverable event in application flow.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| message | java.lang.String | The warning message. |
public abstract void error(String message, Exception exception)
Writes error log message; Error log messages provides information about unrecoverable events in application flow.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| message | java.lang.String | The error message. |
| exception | java.lang.Exception | The exception. |
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.