Android Log 打印日志工具Logcat

  1.简介

     Android平台开发开过程中Log信息的输出是使用非常频繁的,规范日志的打印非常重要。Logcat是在Android的Log基础上进封装,输出更多的信息,有效帮助工程师定位日志输出的类、行号。本文重点讲解Logcat工具的优点、如何导入Logcat工具到AS中。

  2.工具优点

      Android平台的Log日志工具非常繁多,甚至有的大型项目中各个模块存在多个Log日志工具,日志的输出方式也参差不齐。Logcat具有导入简单、代码精炼等特点。

  3.工具的导入

     平台:Android studio 

     文件:app的build.gradle文件中导入如下信息

 

      dependencies {  
           implementation 'com.github.androidUtils:Logcat:1.0.+'
      }

   文件:Project的build.gradle文件中导入如下信息

     allprojects {

    repositories {
        maven { url 'https://jitpack.io' }
        google()
        jcenter()

    }
}

 4.代码链接

      https://github.com/androidUtils/Logcat

你可能感兴趣的:(Android,Share)