Class RLog

  • All Implemented Interfaces:

    
    public class RLog
    
                        
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
      RLog()
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      static int v(String tag, String msg) Send a VERBOSE log message.
      static int d(String tag, String msg) Send a DEBUG log message.
      static int i(String tag, String msg) Send an INFO log message.
      static int w(String tag, String msg) Send a WARN log message.
      static int e(String tag, String msg) Send an ERROR log message.
      static int e(String tag, String msg, Throwable tr) Send a ERROR log message and log the exception.
      static int f(String tag, String msg)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • RLog

        RLog()
    • Method Detail

      • v

         static int v(String tag, String msg)

        Send a VERBOSE log message.

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

         static int d(String tag, String msg)

        Send a DEBUG log message.

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

         static int i(String tag, String msg)

        Send an INFO log message.

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

         static int w(String tag, String msg)

        Send a WARN log message.

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

         static int e(String tag, String msg)

        Send an ERROR log message.

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

         static int e(String tag, String msg, Throwable tr)

        Send a ERROR log message and log the exception.

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

         static int f(String tag, String msg)