android logger的使用

1. 进入GitHub页面 https://github.com/orhanobut/logger

2. 在gradle里增加 

compile 'com.orhanobut:logger:1.15'

3 项目中引用

import com.orhanobut.logger.Logger;

4使用log功能

Logger.d("hello"); 
比原始的Log.D(TAG,"hello") 好用一点,会不会影响效率现在还没有进行测试
原文地址:https://www.cnblogs.com/meetweb/p/Logger.html