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