8 lines
182 B
Kotlin
8 lines
182 B
Kotlin
package be.mygod.vpnhotspot
|
|
|
|
import timber.log.Timber
|
|
|
|
fun initTimber() = Timber.plant(Timber.DebugTree())
|
|
|
|
fun debugLog(tag: String?, message: String?) = Timber.tag(tag).d(message)
|