Log.Logger
interface Log.Logger
Interface for a logger that can output messages with a tag.
Use DEFAULT to output to android.util.Log.
Summary
Constants |
|
|---|---|
const Log.Logger! |
The default instance logging to |
Public functions |
|
|---|---|
Unit |
Logs a debug-level message with an optional associated |
Unit |
Logs an error-level message with an optional associated |
Unit |
Logs an information-level message with an optional associated |
Unit |
Logs a warning-level message with an optional associated |
Constants
Public functions
d
fun d(tag: String!, message: String!, throwable: Throwable?): Unit
Logs a debug-level message with an optional associated Throwable.
e
fun e(tag: String!, message: String!, throwable: Throwable?): Unit
Logs an error-level message with an optional associated Throwable.
i
fun i(tag: String!, message: String!, throwable: Throwable?): Unit
Logs an information-level message with an optional associated Throwable.