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