Ejemplo n.º 1
0
 /** Log a debug exception and a message with optional format args. */
 public static void d(Throwable t, String message, Object... args) {
   TREE_OF_SOULS.d(t, message, args);
 }
Ejemplo n.º 2
0
 /** Log a debug exception. */
 public static void d(Throwable t) {
   TREE_OF_SOULS.d(t);
 }
Ejemplo n.º 3
0
 /** Log a debug message with optional format args. */
 public static void d(String message, Object... args) {
   TREE_OF_SOULS.d(message, args);
 }