Class LogUtil

java.lang.Object
com.facebook.soloader.LogUtil

public class LogUtil extends Object
  • Method Details

    • e

      public static void e(String tag, String msg, Throwable tr)
      Send a Log.ERROR log message and log the exception.
      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.
      tr - An exception to log
    • e

      public static void e(String tag, String msg)
      Send an 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.
    • w

      public static void w(String tag, String msg, Throwable tr)
      Send a Log.WARN log message and log the exception.
      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.
      tr - An exception to log
    • w

      public static void w(String tag, String msg)
      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.
    • i

      public static void i(String tag, String msg, Throwable tr)
      Send an Log.INFO log message and log the exception.
      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.
      tr - An exception to log
    • i

      public static void i(String tag, String msg)
      Send an 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.
    • d

      public static void d(String tag, String msg, Throwable tr)
      Send an Log.DEBUG log message and log the exception.
      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.
      tr - An exception to log
    • d

      public static void d(String tag, String msg)
      Send an 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.
    • v

      public static void v(String tag, String msg, Throwable tr)
      Send an Log.VERBOSE log message and log the exception.
      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.
      tr - An exception to log
    • v

      public static void v(String tag, String msg)
      Send an 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.