抓安卓日志命令

 临时生成logcat文件

ctrl +z 是停止

 adb logcat -> /home/log/log.txt

 抓安卓日志命令_第1张图片

导出全部日志

adb root  

adb remount

只抓安卓日志  logcat (所有保存的日志,中途关机和开机都有)

adb pull log/android D:\73log\1android

抓全部日志(logcat   anr都有)

adb pull /log C:\Users\name\Desktop\log\logcat.txt

删除

adb shell rm -f  路径

如 adb shell rm -f  /vendor/log/*


 

你可能感兴趣的:(android)