Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嘿,我是 Android/ADB 的新手
有人要求我转储 adb bugreport 日志。我设法做到了这一点,但报告是 640k,并且有大量我正在使用的各种应用程序的故障转储。我试图只展示我们感兴趣的应用程序的信息。
有没有办法重置日志,这样我就没有其他的东西了?
谢谢!
adb logcat -c您可以通过从 shell 提示符调用来清除启动应用程序时可用的旧日志。它应该清除缓冲区上的所有旧日志,之后打印的日志应该来自您的应用程序(至少其中大部分)。
adb logcat -c
我建议在进行错误报告之前清理旧的电池收集数据。否则输出会更大。
adb shell dumpsys batterystats --reset adb shell bugreport > Bugreport_File_Name.txt