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

后端 未结 5 621
时光说笑
时光说笑 2021-01-03 21:22

I have two android devices connected to the same station. I would like to view the logcat for both while running them in debug mode in eclipse.

I have had SOME luck

5条回答
  •  感动是毒
    2021-01-03 22:23

    You can try to use adb in two different console windows to get the logcat for each one.

    Example:

    in console window 1: adb -s  logcat
    in console window 2: adb -s  logcat
    

提交回复
热议问题