Interface LoggerDelegate


public interface LoggerDelegate
Interface declaring methods that needs to be implemented for a Logger delegate. Works in a way very similar to Log.
  • Method Details

    • error

      void error(String tag, String msg, Throwable t)
      Send a Log.ERROR log message.
      Parameters:
      tag - Used to identify the source of a log message. It usually identifies the class or activity where the log call occurs.
      msg - The message you would like logged.
    • warn

      void warn(String tag, String msg, Throwable t)
      Send a Log.WARN log message.
      Parameters:
      tag - Used to identify the source of a log message. It usually identifies the class or activity where the log call occurs.
      msg - The message you would like logged.
    • debug

      void debug(String tag, String msg, Throwable t)
      Send a Log.DEBUG log message.
      Parameters:
      tag - Used to identify the source of a log message. It usually identifies the class or activity where the log call occurs.
      msg - The message you would like logged.
    • info

      void info(String tag, String msg, Throwable t)
      Send a Log.INFO log message.
      Parameters:
      tag - Used to identify the source of a log message. It usually identifies the class or activity where the log call occurs.
      msg - The message you would like logged.
    • verbose

      void verbose(String tag, String msg, Throwable t)
      Send a Log.VERBOSE log message.
      Parameters:
      tag - Used to identify the source of a log message. It usually identifies the class or activity where the log call occurs.
      msg - The message you would like logged.