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输出的MyTag输出。我认为这将是运行的命令...
logcat
MyTag
$ adb logcat MyTag:*
...但没有任何内容被过滤,输出与我执行时相同:
$ adb logcat
我究竟做错了什么?
谢谢
这对我来说很好:
adb logcat -s MyTag
编辑 :
您正在尝试的格式更像
adb logcat *:s MyTag