Files
vpnhotspotmod/mobile/src/fdroid/java/be/mygod/vpnhotspot/Timber.kt
2018-10-25 13:31:47 +08:00

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)