Package 

Class LogUtil

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      public interface LogUtil.AppstockLogger
    • Method Summary

      Modifier and Type Method Description
      static int getLogLevel()
      static void setLogLevel(int level)
      static void setLogger(@NonNull() LogUtil.AppstockLogger newLogger)
      static void verbose(String message) Prints a message with VERBOSE priority and default BASE_TAG
      static void debug(String message) Prints a message with DEBUG priority and default BASE_TAG
      static void info(String message) Prints a message with INFO priority and default BASE_TAG
      static void warning(String message) Prints a message with WARNING priority and default BASE_TAG
      static void error(String message) Prints a message with ERROR priority and default BASE_TAG
      static void verbose(@Size(max = 23) String tag, String msg) Prints a message with VERBOSE priority.
      static void debug(@Size(max = 23) String tag, String msg) Prints a message with DEBUG priority.
      static void info(@Size(max = 23) String tag, String msg) Prints a message with INFO priority.
      static void warning(@Size(max = 23) String tag, String msg) Prints a message with WARN priority.
      static void error(@Size(max = 23) String tag, String msg) Prints a message with ERROR priority.
      static void wtf(@Size(max = 23) String tag, String msg) Prints a message with ASSERT priority.
      static void error(String tag, String message, Throwable throwable) Prints a message with ERROR priority and exception.
      • Methods inherited from class java.lang.Object

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

      • verbose

         static void verbose(String message)

        Prints a message with VERBOSE priority and default BASE_TAG

      • debug

         static void debug(String message)

        Prints a message with DEBUG priority and default BASE_TAG

      • info

         static void info(String message)

        Prints a message with INFO priority and default BASE_TAG

      • warning

         static void warning(String message)

        Prints a message with WARNING priority and default BASE_TAG

      • error

         static void error(String message)

        Prints a message with ERROR priority and default BASE_TAG

      • debug

         static void debug(@Size(max = 23) String tag, String msg)

        Prints a message with DEBUG priority.

      • info

         static void info(@Size(max = 23) String tag, String msg)

        Prints a message with INFO priority.

      • error

         static void error(@Size(max = 23) String tag, String msg)

        Prints a message with ERROR priority.

      • wtf

         static void wtf(@Size(max = 23) String tag, String msg)

        Prints a message with ASSERT priority.