Interface Logger

All Known Implementing Classes:
MojoLogger, NoopLogger, SystemLogger

public interface Logger
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Send a message to the user in the debug level.
    void
    Send a message to the user in the error level.
    void
    info(CharSequence content)
    Send a message to the user in the info level.
    void
    Send a message to the user in the warn level.
  • Method Details

    • debug

      void debug(CharSequence content)
      Send a message to the user in the debug level.
      Parameters:
      content -
    • info

      void info(CharSequence content)
      Send a message to the user in the info level.
      Parameters:
      content -
    • warn

      void warn(CharSequence string)
      Send a message to the user in the warn level.
      Parameters:
      content -
    • error

      void error(CharSequence string)
      Send a message to the user in the error level.
      Parameters:
      content -