1.只做压力测试,不保存日志
adb shell monkey -p com.example.hello 10
2、将日志保存在电脑上的e:\log1.txt文件中
adb shell monkey -p com.example.hello 10 >e:\log1.txt
运行结果:
查看日志文件
3、保存日志的详细信息
参数-v的个数决定了日志的详细程度,有三个级别,v越多,日志越详细。
adb shell monkey -p com.example.hello 10 >e:\log1.txt
adb shell monkey -v -p com.example.hello 10 >e:\log2.txt
adb shell monkey -vv -p com.example.hello 10 >e:\log3.txt
adb shell monkey -vvv -p com.example.hello 10 >e:\log4.txt