Searched refs:wtf (Results 1 – 2 of 2) sorted by relevance
233 public static void wtf(String message) { in wtf() method in LogUtil.CLog234 wtf(message, (Throwable) null); in wtf()243 public static void wtf(Throwable t) { in wtf() method in LogUtil.CLog244 wtf(t.getMessage(), t); in wtf()255 public static void wtf(String format, Object... args) { in wtf() method in LogUtil.CLog256 wtf(String.format(format, args), (Throwable) null); in wtf()266 public static void wtf(String message, Throwable t) { in wtf() method in LogUtil.CLog
93 CLog.wtf("this is CLog.wtf"); in testCLog_wtf()94 CLog.wtf(new Throwable("this is CLog.wtf as a throwable")); in testCLog_wtf()95 CLog.wtf("this is CLog.wtf with a format string: %s has length %d", in testCLog_wtf()97 CLog.wtf("this is CLog.wtf with a throwable", new Throwable("this is my throwable")); in testCLog_wtf()115 CLog.wtf("this is CLog.wtf without any handler set"); in testCLog_wtf_wtfHandlerNotSet()