Package 

Class InternalLogging

    • Method Summary

      Modifier and Type Method Description
      static void info(String tag, String message, String payload) Inform SDK users about SDK activities.
      static void info(String tag, String message) Inform SDK users about SDK activities.
      static void warn(String tag, String message) Warn SDK users about non-critical SDK misuse
      static void error(String tag, String message) Log critical SDK error
      • Methods inherited from class java.lang.Object

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

      • info

         static void info(String tag, String message, String payload)

        Inform SDK users about SDK activities. This has 3 parameters to avoid the stringconcatenation when verbose mode is disabled.

        Parameters:
        tag - the log context
        message - the log message
        payload - the payload for the message
      • info

         static void info(String tag, String message)

        Inform SDK users about SDK activities.

        Parameters:
        tag - the log context
        message - the log message
      • warn

         static void warn(String tag, String message)

        Warn SDK users about non-critical SDK misuse

        Parameters:
        tag - the log context
        message - the log message
      • error

         static void error(String tag, String message)

        Log critical SDK error

        Parameters:
        tag - the log context
        message - the log message