Interface ILogger

All Known Implementing Classes:
PartnerLog, SystemOutLogger

public interface ILogger
Defines logger behavior.
  • Method Summary

    Modifier and Type Method Description
    void logError​(String message)
    Logs an error.
    void logInformation​(String message)
    Logs a piece of information.
    void logWarning​(String message)
    Logs a warning.
  • Method Details

    • logInformation

      void logInformation​(String message)
      Logs a piece of information.
      Parameters:
      message - The informational message.
    • logWarning

      void logWarning​(String message)
      Logs a warning.
      Parameters:
      message - The warning message.
    • logError

      void logError​(String message)
      Logs an error.
      Parameters:
      message - The error message.