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