Filter output of adb logcat based on thread id
问题 I am using adb logcat -v threadtime to get the output in a format that includes time and thread id. I was wondering if there is a way to filter output based on the thread id (tid). I want to get output from certain threads only, now i can get the thread id but not the filtered output. Thanks 回答1: adb logcat -v threadtime | grep 123yourthreadid456 来源: https://stackoverflow.com/questions/7576579/filter-output-of-adb-logcat-based-on-thread-id