When I run adb logcat
, I will get the extreme fast moving list of data in the console window. This make it very hard to trace log the app I want to debug. How can I have adb logcat
only display info of the app I want to debug?
Asked
Active
Viewed 310 times
0

user1995781
- 19,085
- 45
- 135
- 236
-
Try this [answer](http://stackoverflow.com/questions/6173985/filter-output-in-logcat-by-tagname). Let me know if everything worked great. – Tasos Moustakas Oct 22 '15 at 07:27
-
I think you are searching for this http://stackoverflow.com/a/6854182/2101822 – Milad Faridnia Oct 22 '15 at 07:32
-
@Milad Thanks for the link. But the answer provided is very confusing. – user1995781 Oct 22 '15 at 07:40
-
just set a tag name for your logs then filter all logs with that tag like this: http://stackoverflow.com/a/18012001/2101822 – Milad Faridnia Oct 22 '15 at 07:44
-
`adb shell logcat | grep "something related to your app"` – Rilwan Oct 22 '15 at 09:39