Example #1
0
 /** Log an assert exception and a message with optional format args. */
 public static void wtf(Throwable t, String message, Object... args) {
   TREE_OF_SOULS.wtf(t, message, args);
 }
Example #2
0
 /** Log an assert exception. */
 public static void wtf(Throwable t) {
   TREE_OF_SOULS.wtf(t);
 }
Example #3
0
 /** Log an assert message with optional format args. */
 public static void wtf(String message, Object... args) {
   TREE_OF_SOULS.wtf(message, args);
 }
Example #4
0
 /** Log an error exception. */
 public static void e(Throwable t) {
   TREE_OF_SOULS.e(t);
 }
Example #5
0
 /** Log an info exception. */
 public static void i(Throwable t) {
   TREE_OF_SOULS.i(t);
 }
Example #6
0
 /** Log a debug exception. */
 public static void d(Throwable t) {
   TREE_OF_SOULS.d(t);
 }
Example #7
0
 /** Log a verbose exception. */
 public static void v(Throwable t) {
   TREE_OF_SOULS.v(t);
 }