public interface JobLogger
| Modifier and Type | Method and Description |
|---|---|
void |
log(int priority,
String tag,
String message,
Throwable t)
Log a message from the library.
|
void log(int priority,
@NonNull
String tag,
@NonNull
String message,
@Nullable
Throwable t)
priority - The priority of the log message. See Log for all values.tag - The tag of the log message.message - The message itself.t - The thrown exception in case of a failure.