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