You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package net.pokeranalytics.android.util
|
|
|
|
import timber.log.Timber
|
|
|
|
class PokerAnalyticsLogs : Timber.DebugTree() {
|
|
override fun log(priority: Int, tag: String?, message: String, throwable: Throwable?) {
|
|
super.log(priority, "PokerAnalytics:$tag", message, throwable)
|
|
}
|
|
} |