今天在項(xiàng)目引入以前一個小功能后發(fā)現(xiàn)日志會打印兩次 , 就又對著重新看了一遍 , 始終找不到有問題的地方. 后來就發(fā)現(xiàn)LogUtil.init()有調(diào)用兩次 , 因?yàn)楸旧碓贏pplication中初始化的 , 引入ActivityLifecycleCallbacks后里面又有一次初始化 . 因?yàn)闆]想過Timber初始化兩次會對打印次數(shù)有影響 , 抱著試試的態(tài)度把ActivityLifecycleCallbacks的刪掉后就奇跡的好了 .
然后就點(diǎn)進(jìn)源碼看了一波 , 發(fā)現(xiàn)也簡單, 就plant會把Tree存在一個集合中 , 然后每次打印就會遍歷去打印.
總結(jié) : Timber.plant(Timber.DebugTree())初始化多次后打印就會重復(fù)打印 .
修改后的結(jié)果: 把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)
}