-
public class SDKLoggerCentralized logging utility for the DoorstepAI SDK. All logs are only printed when dev mode is enabled.
-
-
Method Summary
Modifier and Type Method Description final Unitd(String tag, String message)Log a debug message (only if dev mode is enabled) final Unitd(String tag, String message, Throwable throwable)Log a debug message with throwable (only if dev mode is enabled) final Uniti(String tag, String message)Log an info message (only if dev mode is enabled) final Uniti(String tag, String message, Throwable throwable)Log an info message with throwable (only if dev mode is enabled) final Unitw(String tag, String message)Log a warning message (only if dev mode is enabled) final Unitw(String tag, String message, Throwable throwable)Log a warning message with throwable (only if dev mode is enabled) final Unite(String tag, String message)Log an error message (only if dev mode is enabled) final Unite(String tag, String message, Throwable throwable)Log an error message with throwable (only if dev mode is enabled) final Unitv(String tag, String message)Log a verbose message (only if dev mode is enabled) final Unitv(String tag, String message, Throwable throwable)Log a verbose message with throwable (only if dev mode is enabled) final Unitwtf(String tag, String message)Log a what-a-terrible-failure message (only if dev mode is enabled) final Unitwtf(String tag, String message, Throwable throwable)Log a what-a-terrible-failure message with throwable (only if dev mode is enabled) -
-
Method Detail
-
d
final Unit d(String tag, String message, Throwable throwable)
Log a debug message with throwable (only if dev mode is enabled)
-
i
final Unit i(String tag, String message, Throwable throwable)
Log an info message with throwable (only if dev mode is enabled)
-
w
final Unit w(String tag, String message, Throwable throwable)
Log a warning message with throwable (only if dev mode is enabled)
-
e
final Unit e(String tag, String message, Throwable throwable)
Log an error message with throwable (only if dev mode is enabled)
-
v
final Unit v(String tag, String message, Throwable throwable)
Log a verbose message with throwable (only if dev mode is enabled)
-
wtf
final Unit wtf(String tag, String message)
Log a what-a-terrible-failure message (only if dev mode is enabled)
-
-
-
-