aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/utils/L.kt
blob: 63fbaffb343f3ec32f31f5d94fd9ac5d252fa01b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.pitchedapps.frost.utils

import android.util.Log
import com.crashlytics.android.Crashlytics
import timber.log.Timber


/**
 * Created by Allan Wang on 2017-05-28.
 */
object L {
    const val TAG = "Frost: %s"
    fun e(s: String) = Timber.e(TAG, s)
    fun d(s: String) = Timber.d(TAG, s)
    fun i(s: String) = Timber.i(TAG, s)
    fun v(s: String) = Timber.v(TAG, s)
}

internal class CrashReportingTree : Timber.Tree() {
    override fun log(priority: Int, tag: String?, message: String?, t: Throwable?) {
        if (priority == Log.VERBOSE || priority == Log.DEBUG)
            return
        if (message != null) {
            Log.println(priority, tag ?: "Frost", message)
//            Crashlytics.log(priority, tag ?: "Frost", message)
        }
//        if (t != null) Crashlytics.logException(t)
    }
}