adb logcat -s“ myTAG”会在我放置myTAG的任何位置提供来自应用程序的日志。
如何在同一命令中包含其他TAG
adb logcat -s "myTAG" | "myOtherTAG" | "....and so on .." doesnt work
also
adb logcat -s "myTAG" || "myOtherTAG" || "....and so on .." gives only the logs from the myTAG
我想基本上获取所有蓝牙日志,所以我将标签标识为bt_stack,bt_btif等...,我希望将它们合并在一起。