-
public interface ILogger
-
-
Method Summary
Modifier and Type Method Description abstract intgetMinLogPriority()Returns the minimum log priority that should be logged. abstract voidlog(int priority, @NonNull() String message)Logs the given message with given log priority into the all managed devices' log session. abstract voidlog(int priority, @StringRes() int messageRes, @Nullable() Array<Object> params)Logs the given message with given log priority into the all managed devices' log session. -
-
Method Detail
-
getMinLogPriority
abstract int getMinLogPriority()
Returns the minimum log priority that should be logged.
-
log
abstract void log(int priority, @NonNull() String message)
Logs the given message with given log priority into the all managed devices' log session.
- Parameters:
priority- the log priority.message- the message to be logged.
-
log
abstract void log(int priority, @StringRes() int messageRes, @Nullable() Array<Object> params)
Logs the given message with given log priority into the all managed devices' log session.
- Parameters:
priority- the log priority.messageRes- string resource id.params- additional (optional) parameters used to fill the message.
-
-
-
-