Package 

Interface LoggerDelegate


  • 
    public interface LoggerDelegate
    
                        

    Interface declaring methods that needs to be implemented for a Logger delegate. Works in a way very similar to android.util.Log.

    • Method Detail

      • error

         abstract void error(String tag, String msg, Throwable t)

        Send a ERROR log message.

        Parameters:
        tag - Used to identify the source of a log message.
        msg - The message you would like logged.
      • warn

         abstract void warn(String tag, String msg, Throwable t)

        Send a WARN log message.

        Parameters:
        tag - Used to identify the source of a log message.
        msg - The message you would like logged.
      • debug

         abstract void debug(String tag, String msg, Throwable t)

        Send a DEBUG log message.

        Parameters:
        tag - Used to identify the source of a log message.
        msg - The message you would like logged.
      • info

         abstract void info(String tag, String msg, Throwable t)

        Send a INFO log message.

        Parameters:
        tag - Used to identify the source of a log message.
        msg - The message you would like logged.
      • verbose

         abstract void verbose(String tag, String msg, Throwable t)

        Send a VERBOSE log message.

        Parameters:
        tag - Used to identify the source of a log message.
        msg - The message you would like logged.