日志开源库

  • apkfuns
implementation 'com.apkfuns.logutils:library:1.5.1.1'
  • LogUtils
    支持直接打印数据集合,如List、Set、Map、数组等
    全局配置log输出
    个性化设置Tag
    准确显示调用方法、行,快速定位所在文件位置
    支持android系统对象Intent、Bundle打印
    提供release-no-op版本
    支持日志写入文件
    https://github.com/pengwei1024/LogUtils
implementation 'com.apkfuns.logutils:library:1.5.1.1'
//----日志写入到文件
compile 'com.apkfuns.log2file:log2file:1.0.0'
...
若本地已经依赖okio(如pokhttp)请排除
compile('com.apkfuns.log2file:log2file:1.0.0') {
    exclude module: 'okio'
}

你可能感兴趣的:(日志开源库)