Logcat for multiple devices running simultaneously in Android Studio?

As the title says, I would like to have two windows in Android studio to see the log for two devices working simultaneously, how to do this? At the moment, I have to constantly switch to devices, but this is not very convenient when you need to compare different values.

I found this thread, but it does not work in AS:

How to get Logcat for multiple devices running at the same time in Eclipse

+6
source share
2 answers

You can use the usual โ€œAndroidโ€ view for one device, and then run the application on another device in debug mode. In the debug view, you can view the logcat output in the Logcat tab. Then make both the Android and Debug views float to see them at the same time.

+2
source

Open two Android Studio projects, open Android Monitor on both windows, and you can select one device in each of them.

0
source

Source: https://habr.com/ru/post/980514/


All Articles