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.
我怎样才能在一个文件中只收集我的应用程序警告和错误日志。(我使用 logcat -d 但它会获取所有日志)
您可以使用adb logcat -s "THETAGYOUWANTTOFOLLOW". 大多数时候我使用完整的日志来调试。使用 colouredlogcat.py 脚本很容易找到您的应用程序日志,并且拥有所有日志可以帮助我更轻松地了解正在发生的事情。
adb logcat -s "THETAGYOUWANTTOFOLLOW"
如果您使用的是 Eclipse,那么您可以使用“将所选项目导出到文本文件”按钮轻松收集所有日志和警告。