Reputation: 349
Simple question, but is it possible to view the entire logcat output of an Android device in Android Studio? Meaning all of the logs from everything that's happening on the device, not necessarily only those generated by the app in development.
I ask because I have a bug that does not show up on the debug build (i.e. I build it in Android studio and run it on a device), but it DOES show up in the production build for the same code, and I would love to see what is happening on the device.
Essentially, I'm asking if it's possible to select nothing from the following dropdown menu.
Upvotes: 1
Views: 696
Reputation: 559
Use no filters
option in your Android studio Logcat.
How you can select nothing in processes spinner:
no debuggable processes
in your spinner. Upvotes: 2