/** Log an assert exception and a message with optional format args. */ public static void wtf(Throwable t, String message, Object... args) { TREE_OF_SOULS.wtf(t, message, args); }
/** Log an assert exception. */ public static void wtf(Throwable t) { TREE_OF_SOULS.wtf(t); }
/** Log an assert message with optional format args. */ public static void wtf(String message, Object... args) { TREE_OF_SOULS.wtf(message, args); }
/** Log an error exception. */ public static void e(Throwable t) { TREE_OF_SOULS.e(t); }
/** Log an info exception. */ public static void i(Throwable t) { TREE_OF_SOULS.i(t); }
/** Log a debug exception. */ public static void d(Throwable t) { TREE_OF_SOULS.d(t); }
/** Log a verbose exception. */ public static void v(Throwable t) { TREE_OF_SOULS.v(t); }