public interface ILogger
| Modifier and Type | Method and Description |
|---|---|
void |
log(int priority,
int messageRes,
java.lang.Object... params)
Logs the given message with given log priority into the all managed devices' log session.
|
void |
log(int priority,
java.lang.String message)
Logs the given message with given log priority into the all managed devices' log session.
|
void log(int priority,
@NonNull
java.lang.String message)
priority - the log priority.message - the message to be logged.void log(int priority,
@StringRes
int messageRes,
@Nullable
java.lang.Object... params)
priority - the log priority.messageRes - string resource id.params - additional (optional) parameters used to fill the message.