当前位置: 首页 > 工具软件 > Hugo Plugin > 使用案例 >

Android便于性能分析的日志框架 hugo

夹谷和韵
2023-12-01

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;
}

Android 高级进阶(源码剖析篇) 便于性能分析的日志框架 hugo

 类似资料: