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