public final class QLog
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
static int |
ALL |
static int |
ERRORS_ONLY |
static int |
ERRORS_WARNINGS |
static int |
ERRORS_WARNINGS_INFO |
static int |
ERRORS_WARNINGS_INFO_DEBUG |
static int |
LOGGING_LEVEL |
static int |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static void |
d(java.lang.Object obj) |
static void |
e(java.lang.Object obj) |
static void |
e(java.lang.Object obj,
java.lang.Throwable cause) |
static void |
handleException(java.lang.Exception e)
Prints the stack trace to mubaloo log and standard log
|
static void |
i(java.lang.Object obj) |
static boolean |
isDLoggable() |
static boolean |
isELoggable() |
static boolean |
isILoggable() |
static boolean |
isVLoggable() |
static boolean |
isWLoggable() |
static void |
v(java.lang.Object obj) |
static void |
w(java.lang.Object obj) |
static void |
w(java.lang.Object obj,
java.lang.Throwable cause) |
public static final int NONE
public static final int ERRORS_ONLY
public static final int ERRORS_WARNINGS
public static final int ERRORS_WARNINGS_INFO
public static final int ERRORS_WARNINGS_INFO_DEBUG
public static final int ALL
public static int LOGGING_LEVEL
public static void e(java.lang.Object obj,
java.lang.Throwable cause)
obj - the object to logcause - The exception which caused this error, may not be nullpublic static void e(java.lang.Object obj)
public static void w(java.lang.Object obj,
java.lang.Throwable cause)
public static void w(java.lang.Object obj)
public static void i(java.lang.Object obj)
public static void d(java.lang.Object obj)
public static void v(java.lang.Object obj)
public static boolean isVLoggable()
public static boolean isDLoggable()
public static boolean isILoggable()
public static boolean isWLoggable()
public static boolean isELoggable()
public static void handleException(java.lang.Exception e)
e - the exception to log