D | LogUtil.java | 233 public static void wtf(String message) { in wtf() method in LogUtil.CLog 234 wtf(message, (Throwable) null); in wtf() 243 public static void wtf(Throwable t) { in wtf() method in LogUtil.CLog 244 wtf(t.getMessage(), t); in wtf() 255 public static void wtf(String format, Object... args) { in wtf() method in LogUtil.CLog 256 wtf(String.format(format, args), (Throwable) null); in wtf() 266 public static void wtf(String message, Throwable t) { in wtf() method in LogUtil.CLog
|