如何在多个设备上运行logcat?
如何同时在多个设备上运行logcat? “adb logcat”命令给出错误:
error: more than one device and emulator
How can I run logcat on multiple devices at the same time? "adb logcat" command gives an error:
error: more than one device and emulator
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
adb
的-s
选项:示例
您可以将
grep
与此结合起来,以获取包含以下内容的所有行它。一个例子是
System.out
示例:
Use the
-s
option ofadb
:Example
You can combine
grep
whit this, to get all lines that contain it.an example is with
System.out
Example:
我认为这可能有用。我有这个脚本对我帮助很大。它将每个设备记录到不同的文件中。要停止记录,只需按 CTRL+C。
I thought it might be useful. I have this script that helps me a lot. It logcats each device to a different file. To stop logging just press CTRL+C.
使用您的设备 IP:
adb -s device_ip:5555
Use your device ip:
adb -s device_ip:5555