/** Log a debug exception and a message with optional format args. */ public static void d(Throwable t, String message, Object... args) { TREE_OF_SOULS.d(t, message, args); }
/** Log a debug exception. */ public static void d(Throwable t) { TREE_OF_SOULS.d(t); }
/** Log a debug message with optional format args. */ public static void d(String message, Object... args) { TREE_OF_SOULS.d(message, args); }