Package io.rong.common
Class RLog
-
- All Implemented Interfaces:
@Deprecated() public class RLog
使用 io.rong.common.rlog.RLog 替换
-
-
Constructor Summary
Constructors Constructor Description RLog()
-
Method Summary
Modifier and Type Method Description static int
v(String tag, String msg)
Send a VERBOSE log message. static int
d(String tag, String msg)
Send a DEBUG log message. static int
i(String tag, String msg)
Send an INFO log message. static int
w(String tag, String msg)
Send a WARN log message. static int
e(String tag, String msg)
Send an ERROR log message. static int
e(String tag, String msg, Throwable tr)
Send a ERROR log message and log the exception. static int
f(String tag, String msg)
-
-
Method Detail
-
v
static int v(String tag, String msg)
Send a VERBOSE log message.
- Parameters:
tag
- Used to identify the source of a log message.msg
- The message you would like logged.
-
d
static int d(String tag, String msg)
Send a DEBUG log message.
- Parameters:
tag
- Used to identify the source of a log message.msg
- The message you would like logged.
-
i
static int i(String tag, String msg)
Send an INFO log message.
- Parameters:
tag
- Used to identify the source of a log message.msg
- The message you would like logged.
-
w
static int w(String tag, String msg)
Send a WARN log message.
- Parameters:
tag
- Used to identify the source of a log message.msg
- The message you would like logged.
-
e
static int e(String tag, String msg)
Send an ERROR log message.
- Parameters:
tag
- Used to identify the source of a log message.msg
- The message you would like logged.
-
e
static int e(String tag, String msg, Throwable tr)
Send a ERROR log message and log the exception.
- Parameters:
tag
- Used to identify the source of a log message.msg
- The message you would like logged.tr
- An exception to log
-
f
static int f(String tag, String msg)
-
-
-
-