SethCoast
SethCoast

Reputation: 349

Is it possible view entire logcat of Android device (i.e. not attached to a specific process)?

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.Image of logcat with dropdown of processes next to the dropdown of devices

Upvotes: 1

Views: 696

Answers (1)

samaromku
samaromku

Reputation: 559

Use no filters option in your Android studio Logcat. enter image description here

How you can select nothing in processes spinner:

  • Stop your application
  • Close the emulator
  • Press launch in android studio
  • Cancel launching the application
  • Emulator is still launching
  • You have no debuggable processes in your spinner.

Upvotes: 2

Related Questions