这个插件会为你每行日志添加行号,可以帮你更快定位日志,尤其有时候你在一个Java文件中不同地方,打印了一样的日志。
在build.gradle中添加以下依赖
dependencies {
implementation 'com.quinn.hunter:hunter-linelog-library:0.8.6'
}
repositories {
jcenter()
}
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.quinn.hunter:hunter-linelog-plugin:1.0.0'
classpath 'com.quinn.hunter:hunter-transform:1.0.0'
}
}
apply plugin: 'hunter-linelog'
未使用这个插件时打印的日志
I/MainActivity: onCreate
使用插件后的日志
I/MainActivity[21]: onCreate
如果你只想在debug模式下使用该插件,则可以这样设置,
linelogHunterExt {
runVariant = 'DEBUG' //'DEBUG', 'RELEASE', 'ALWAYS', 'NEVER', The 'ALWAYS' is default value
}