ILogger

public interface ILogger

Defines interface of a logger that is used for logging events and errors in an index.

Learn more

Methods

Method Description
error(String message) Logs an error that occurred in the index.
trace(String message) Logs an event that occurred in the index.

error(String message)

public abstract void error(String message)

Logs an error that occurred in the index.

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 in the index.

Parameters:

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