示例#1
0
 /** 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);
 }
示例#2
0
 /** Log an info exception. */
 public static void i(Throwable t) {
   TREE_OF_SOULS.i(t);
 }
示例#3
0
 /** Log an info message with optional format args. */
 public static void i(String message, Object... args) {
   TREE_OF_SOULS.i(message, args);
 }