Beispiel #1
0
 /** Log an error exception and a message with optional format args. */
 public static void e(Throwable t, String message, Object... args) {
   TREE_OF_SOULS.e(t, message, args);
 }
Beispiel #2
0
 /** Log an error exception. */
 public static void e(Throwable t) {
   TREE_OF_SOULS.e(t);
 }
Beispiel #3
0
 /** Log an error message with optional format args. */
 public static void e(String message, Object... args) {
   TREE_OF_SOULS.e(message, args);
 }