ConsoleLogger
Contents
 [
        
            Hide
        ]
    Inheritance: java.lang.Object
All Implemented Interfaces: com.groupdocs.conversion.logging.ILogger
public final class ConsoleLogger implements ILogger
Console logger implementation.
Constructors
| Constructor | Description | 
|---|---|
| ConsoleLogger() | 
Methods
| 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. | 
ConsoleLogger()
public ConsoleLogger()
trace(String message)
public 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. | 
warning(String message)
public 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. | 
error(String message, Exception exception)
public 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. |