-
public class InternalLogging
-
-
Method Summary
Modifier and Type Method Description static voidinfo(String tag, String message, String payload)Inform SDK users about SDK activities. static voidinfo(String tag, String message)Inform SDK users about SDK activities. static voidwarn(String tag, String message)Warn SDK users about non-critical SDK misuse static voiderror(String tag, String message)Log critical SDK error -
-
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 contextmessage- the log messagepayload- the payload for the message
-
info
static void info(String tag, String message)
Inform SDK users about SDK activities.
- Parameters:
tag- the log contextmessage- the log message
-
warn
static void warn(String tag, String message)
Warn SDK users about non-critical SDK misuse
- Parameters:
tag- the log contextmessage- the log message
-
-
-
-