I am attempting to get logcat
logs from a Cordova app running on Google Arc Welder.
I have tried the following sequence of steps:
- Started the app from google arc welder
- Start adb logcat with the command
adb logcat -d
- Enable output from chrome by typing
plugin.shell("logcat")
into the javascript console for my app.
After I type plugin.shell("logcat")
the adb logcat window stops saying that it is waiting for devices and exits instead of printing logs.
I have also tried the plugin.shell("logcat")
command ib the JS console window but don't get any android-specific logs there either.
What should I do differently in order to be able to do logs from my Android app in Google Arc Welder?