the calls look like this: `log.d("...")` and this ...
# android
i
the calls look like this:
log.d("...")
and this is the interface:
Copy code
interface Log {
    fun setup()
    fun v(message: String)
    fun d(message: String)
    fun i(message: String)
    fun w(message: String)
    fun e(message: String)
}