Debugging a WebView (Ionic) app on Android via logcat
Alternatively when runing adb on linux or unix based os/git bash:
adb logcat | grep 'Web Console'
It seems that logcat
can not properly parse tag names with whitespaces. So instead I suggest using grep
on the device:
adb shell "logcat | grep 'Web Console'"