forked from github/wulkanowy-mirror
14 lines
315 B
Kotlin
14 lines
315 B
Kotlin
@file:Suppress("UNUSED_PARAMETER")
|
|
|
|
package io.github.wulkanowy.utils
|
|
|
|
import timber.log.Timber
|
|
|
|
open class TimberTreeNoOp : Timber.Tree() {
|
|
override fun log(priority: Int, tag: String?, message: String, t: Throwable?) {}
|
|
}
|
|
|
|
class CrashLogTree : TimberTreeNoOp()
|
|
|
|
class CrashLogExceptionTree : TimberTreeNoOp()
|