public final class Slog extends Object
Modifier and Type | Method and Description |
---|---|
static int |
d(String tag,
String msg) |
static int |
d(String tag,
String msg,
Throwable tr) |
static int |
e(String tag,
String msg) |
static int |
e(String tag,
String msg,
Throwable tr) |
static int |
i(String tag,
String msg) |
static int |
i(String tag,
String msg,
Throwable tr) |
static int |
println(int priority,
String tag,
String msg) |
static int |
v(String tag,
String msg) |
static int |
v(String tag,
String msg,
Throwable tr) |
static int |
w(String tag,
String msg) |
static int |
w(String tag,
String msg,
Throwable tr) |
static int |
w(String tag,
Throwable tr) |
static int |
wtf(String tag,
String msg)
Like
Log.wtf(String, String) , but will never cause the caller to crash, and
will always be handled asynchronously. |
static int |
wtf(String tag,
String msg,
Throwable tr)
Like
Log.wtf(String, String, Throwable) , but will never cause the caller to crash,
and will always be handled asynchronously. |
static int |
wtf(String tag,
Throwable tr)
Like
Log.wtf(String, Throwable) , but will never cause the caller to crash,
and will always be handled asynchronously. |
static void |
wtfQuiet(String tag,
String msg)
Like
wtf(String, String) , but does not output anything to the log. |
static int |
wtfStack(String tag,
String msg)
Like
Log.wtfStack(String, String) , but will never cause the caller to crash, and
will always be handled asynchronously. |
public static int wtf(String tag, String msg)
Log.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.public static void wtfQuiet(String tag, String msg)
wtf(String, String)
, but does not output anything to the log.public static int wtfStack(String tag, String msg)
Log.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.public static int wtf(String tag, Throwable tr)
Log.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.public static int wtf(String tag, String msg, Throwable tr)
Log.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.