Interface ILogger
- All Known Implementing Classes:
PartnerLog,SystemOutLogger
public interface ILogger
Defines logger behavior.
-
Method Summary
Modifier and Type Method Description voidlogError(String message)Logs an error.voidlogInformation(String message)Logs a piece of information.voidlogWarning(String message)Logs a warning.
-
Method Details
-
logInformation
Logs a piece of information.- Parameters:
message- The informational message.
-
logWarning
Logs a warning.- Parameters:
message- The warning message.
-
logError
Logs an error.- Parameters:
message- The error message.
-