Hugo : 方法调试工具,可以在Logcat日志中显示方法的参数值,返回值,方法耗时时间。
具体描述见项目github:
项目gitgub地址:https://github.com/JakeWharton/hugo
配置:
1.在工程的build.gradle 文件中配置依赖:
classpath ‘com.jakewharton.hugo:hugo-plugin:1.2.1’
2.在module的build.gradle文件中配置app plugin 属性:
apply plugin: ‘com.jakewharton.hugo’
使用:
给需要调试的方法加上@DebugLog注解 即可。
@DebugLog
private int test(int i, int j) {
SystemClock.sleep(15);
return i + j;
}