ILogger

public interface ILogger

Defines interface of a logger that can be used for logging events and errors in process of redaction.


Learn more

Methods

Method Description
error(String message) Logs an error that occurred during redaction process.
trace(String message) Logs an event that occurred during redaction process.
warning(String message) Logs a warning that occurred during redaction process.

error(String message)

public abstract void error(String message)

Logs an error that occurred during redaction process.

Parameters:

Parameter Type Description
message java.lang.String The error message.

trace(String message)

public abstract void trace(String message)

Logs an event that occurred during redaction process.

Parameters:

Parameter Type Description
message java.lang.String The event message.

warning(String message)

public abstract void warning(String message)

Logs a warning that occurred during redaction process.

Parameters:

Parameter Type Description
message java.lang.String The warning message.