android 日志出现重复打印 - Timber

今天在项目引入以前一个小功能后发现日志会打印两次 , 就又对着重新看了一遍 , 始终找不到有问题的地方. 后来就发现LogUtil.init()有调用两次 , 因为本身在Application中初始化的 , 引入ActivityLifecycleCallbacks后里面又有一次初始化 . 因为没想过Timber初始化两次会对打印次数有影响 , 抱着试试的态度把ActivityLifecycleCallbacks的删掉后就奇迹的好了 .
然后就点进源码看了一波 , 发现也简单, 就plant会把Tree存在一个集合中 , 然后每次打印就会遍历去打印.

总结 : Timber.plant(Timber.DebugTree())初始化多次后打印就会重复打印 .
修改后的结果: 把LogUtil改为单例, Timber初始化放入init中 , 只要保证只初始化一次就好了 .
package tech.hulin.core.util

import android.text.TextUtils
import com.jinr.borrow.constant.EnvConstant
import org.json.JSONArray
import org.json.JSONException
import org.json.JSONObject
import timber.log.Timber

/**
 * description : 日志打印工具类
 */
private object LogUtils {

    val DEBUG = !EnvConstant.isOnline()
    const val TAG = "TAG"

    private const val APP_INIT = "" +
            "\n^^^^^^^^^^^^^less code,less bug^^^^^^^^^^^^^^\n" +
            "                   _ooOoo_\n" +
            "                  o8888888o\n" +
            "                  88\" . \"88\n" +
            "                  (| -_- |)\n" +
            "                  O\\  =  /O\n" +
            "               ____/`---'\\____\n" +
            "             .'  \\\\|     |//  `.\n" +
            "            /  \\\\|||  :  |||//  \\\n" +
            "           /  _||||| -:- |||||-  \\\n" +
            "           |   | \\\\\\  -  /// |   |\n" +
            "           | \\_|  ''\\---/''  |   |\n" +
            "           \\  .-\\__  `-`  ___/-. /\n" +
            "         ___`. .'  /--.--\\  `. . __\n" +
            "      .\"\" '<  `.___\\_<|>_/___.'  >'\"\".\n" +
            "     | | :  `- \\`.;`\\ _ /`;.`/ - ` : | |\n" +
            "     \\  \\ `-.   \\_ __\\ /__ _/   .-` /  /\n" +
            "======`-.____`-.___\\_____/___.-`____.-'======\n" +
            "                   `=---='\n" +
            "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n" +
            "            佛祖保佑       永无BUG\n" +
            "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n"

    private const val TOP_DESC = "\n" + "^^^^^^^^^^^^^less code,less bug^^^^^^^^^^^^^^\n"

    init {
        if (DEBUG) {
            Timber.plant(Timber.DebugTree())
            Timber.tag(TAG)
            Timber.d(APP_INIT)
        }
    }

    fun logd(msg: String, tag: String = "") {
        if (DEBUG) {
            if (tag.isEmpty()) {
                Timber.tag(TAG).d(msg)
            } else {
                Timber.tag(tag).d(msg)
            }
        }
    }

    fun logv(msg: String, tag: String = "") {
        if (DEBUG) {
            if (tag.isEmpty()) {
                Timber.tag(TAG).v(msg)
            } else {
                Timber.tag(tag).v(msg)
            }
        }
    }

    fun logi(msg: String, tag: String = "") {
        if (DEBUG) {
            if (tag.isEmpty()) {
                Timber.tag(TAG).i(msg)
            } else {
                Timber.tag(tag).i(msg)
            }
        }
    }

    fun logw(msg: String, tag: String = "") {
        if (DEBUG) {
            if (tag.isEmpty()) {
                Timber.tag(TAG).w(msg)
            } else {
                Timber.tag(tag).w(msg)
            }
        }
    }

    fun loge(t: Throwable, msg: String = "", tag: String = "") {
        if (DEBUG) {
            if (tag.isEmpty()) {
                Timber.tag(TAG).e(t, msg)
            } else {
                Timber.tag(tag).e(t, msg)
            }
        }
    }

    /**
     * 格式化字符串
     *
     * @param json json
     * @return 格式化字符串
     */
    private fun formatJson(json: String): String {
        var json = json
        if (TextUtils.isEmpty(json)) {
            return ""
        }
        try {
            json = json.trim { it <= ' ' }
            if (json.startsWith("{")) {
                val jsonObject = JSONObject(json)
                val message = jsonObject.toString(2)
                return message
            }
            if (json.startsWith("[")) {
                val jsonArray = JSONArray(json)
                val message = jsonArray.toString(2)
                return message
            }
            return json
        } catch (e: JSONException) {
            return json
        }
    }
}

fun logv(msg: String, tag: String = "") {
    LogUtils.logv(msg, tag)
}

fun logd(msg: String, tag: String = "") {
    LogUtils.logd(msg, tag)
}

fun logi(msg: String, tag: String = "") {
    LogUtils.logi(msg, tag)
}

fun logw(msg: String, tag: String = "") {
    LogUtils.logw(msg, tag)
}

fun loge(t: Throwable, msg: String = "", tag: String = "") {
    LogUtils.loge(t, msg, tag)
}

你可能感兴趣的:(android 日志出现重复打印 - Timber)