Boycott A.I.
Boycott A.I.

Reputation: 18891

Android Studio - How to monitor device after reboot?

I'm developing an app with a BootReceiver class which is misbehaving so I would like to view its Log.d(...) output after the device is restarted.

When the app restarts, it shows as DEAD in the Android Monitor tab so no log output is shown. Is there any way I can view the log output (pref. via Android Studio)?

(Could find nothing on Google or on the official Debugging with Android Studio page.

Upvotes: 1

Views: 379

Answers (1)

guipivoto
guipivoto

Reputation: 18687

I think you can select: "No Filters".

This way, whole log will be displayed.

Then, you can filter the log by your log tag (or any other text that you are search for).

enter image description here

Upvotes: 1

Related Questions