public interface ILogger
Defines the methods that are used to perform logging.
| Modifier and Type | Method and Description |
|---|---|
void |
error(String message,
Exception ex)
Writes error log message; Error log messages provides information about unrecoverable events in application flow.
|
void |
trace(String message)
Writes a trace message.
|
void |
warning(String message)
Writes warning log message; Warning log messages provides information about unexpected and recoverable event in application flow.
|
void error(String message, Exception ex)
Writes error log message; Error log messages provides information about unrecoverable events in application flow.
message - The error message.ex - The exception.void trace(String message)
Writes a trace message. Trace log messages provide generally useful information about application flow.
message - The trace message.void warning(String message)
Writes warning log message; Warning log messages provides information about unexpected and recoverable event in application flow.
message - The warning message.Copyright © 2024. All rights reserved.