ILogger
Leave feedback
On this page
public interface ILogger
Defines the interface of a logger that is used for logging events and errors during watermarking.
| Method | Description |
|---|---|
| error(String message, Exception exception) | Logs an error that occurred during watermarking. |
| trace(String message) | Logs an event occurred during watermarking. |
| warning(String message) | Logs a warning that occurred during watermarking. |
public abstract void error(String message, Exception exception)
Logs an error that occurred during watermarking.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| message | java.lang.String | The error message. |
| exception | java.lang.Exception | The instance of occured exception. |
public abstract void trace(String message)
Logs an event occurred during watermarking.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| message | java.lang.String | The event message. |
public abstract void warning(String message)
Logs a warning that occurred during watermarking.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| message | java.lang.String | The warning message. |
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.