ILogger Interface

public interface ILogger

Defines logger behavior.

Method Summary

Modifier and Type Method and Description
abstract void logError(String message)

Logs an error.

abstract void logInformation(String message)

Logs a piece of information.

abstract void logWarning(String message)

Logs a warning.

Method Details

logError

public abstract void logError(String message)

Logs an error.

Parameters:

message - The error message.

logInformation

public abstract void logInformation(String message)

Logs a piece of information.

Parameters:

message - The informational message.

logWarning

public abstract void logWarning(String message)

Logs a warning.

Parameters:

message - The warning message.

Applies to