Package android.util
Class Slog
- java.lang.Object
-
- android.util.Slog
-
public final class Slog extends Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static intd(String tag, String msg)static intd(String tag, String msg, Throwable tr)static inte(String tag, String msg)static inte(String tag, String msg, Throwable tr)static inti(String tag, String msg)static inti(String tag, String msg, Throwable tr)static intprintln(int priority, String tag, String msg)static intv(String tag, String msg)static intv(String tag, String msg, Throwable tr)static intw(String tag, String msg)static intw(String tag, String msg, Throwable tr)static intw(String tag, Throwable tr)static intwtf(String tag, String msg)LikeLog.wtf(String, String), but will never cause the caller to crash, and will always be handled asynchronously.static intwtf(String tag, String msg, Throwable tr)LikeLog.wtf(String, String, Throwable), but will never cause the caller to crash, and will always be handled asynchronously.static intwtf(String tag, Throwable tr)LikeLog.wtf(String, Throwable), but will never cause the caller to crash, and will always be handled asynchronously.static voidwtfQuiet(String tag, String msg)Likewtf(String, String), but does not output anything to the log.static intwtfStack(String tag, String msg)LikeLog.wtfStack(String, String), but will never cause the caller to crash, and will always be handled asynchronously.
-
-
-
Method Detail
-
wtf
public static int wtf(String tag, String msg)
LikeLog.wtf(String, String), but will never cause the caller to crash, and will always be handled asynchronously. Primarily for use by coding running within the system process.
-
wtfQuiet
public static void wtfQuiet(String tag, String msg)
Likewtf(String, String), but does not output anything to the log.
-
wtfStack
public static int wtfStack(String tag, String msg)
LikeLog.wtfStack(String, String), but will never cause the caller to crash, and will always be handled asynchronously. Primarily for use by coding running within the system process.
-
wtf
public static int wtf(String tag, Throwable tr)
LikeLog.wtf(String, Throwable), but will never cause the caller to crash, and will always be handled asynchronously. Primarily for use by coding running within the system process.
-
wtf
public static int wtf(String tag, String msg, Throwable tr)
LikeLog.wtf(String, String, Throwable), but will never cause the caller to crash, and will always be handled asynchronously. Primarily for use by coding running within the system process.
-
-