aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/utils/L.kt
blob: b4bed5e1ac5fbfaba845f89f39c04fd3ceb7a053 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package com.pitchedapps.frost.utils

import android.util.Log
import com.crashlytics.android.Crashlytics
import com.pitchedapps.frost.BuildConfig


/**
 * Created by Allan Wang on 2017-05-28.
 *
 * Logging for frost
 *
 * To ensure privacy, the following rules are set:
 *
 * Debug and Error logs must not reveal person info
 * Person info logs can be marked as info or verbose
 */
object L {

    const val TAG = "Frost"

    inline fun v(message: () -> Any?) {
        if (BuildConfig.DEBUG)
            logImpl(Log.VERBOSE, message)
    }

    inline fun i(message: () -> Any?) {
        logImpl(Log.INFO, message)
    }

    inline fun _i(message: () -> Any?) {
        if (BuildConfig.DEBUG)
            logImpl(Log.INFO, message)
    }

    inline fun d(message: () -> Any?) {
        if (BuildConfig.DEBUG || Prefs.verboseLogging)
            logImpl(Log.DEBUG, message)
    }

    inline fun _d(message: () -> Any?) {
        if (BuildConfig.DEBUG)
            logImpl(Log.DEBUG, message)
    }

    inline fun e(t: Throwable? = null, message: () -> Any?) {
        logImpl(Log.ERROR, message, t)
    }

    fun eThrow(message: Any) {
        val msg = message.toString()
        logImpl(Log.ERROR, { msg }, Throwable(msg))
    }

    inline fun logImpl(priority: Int, message: () -> Any?, t: Throwable? = null) {
        val msg = message()?.toString()
        if (BuildConfig.DEBUG) {
            if (t != null)
                Log.e(TAG, msg, t)
            else
                Log.println(priority, TAG, msg ?: "null")
        } else {
            if (msg != null)
                Crashlytics.log(priority, TAG, msg)
            if (t != null)
                Crashlytics.logException(t)
        }
    }
}