I\'m building an app using the Ionic framework, which I\'ve done in the browser until now. Because I now want to use the cordovaOauth plugin I need to use the emulator. The prob
If you wan't to watch console logs in emulator / simulator use
ionic emulate -l -c
If you wan't to watch console logs when testing in device you can launch this command :
ionic run -l -c
-c = --consolelogs
: Print app console logs to Ionic CLI (livereload req.)
-l = --livereload
: Live reload app dev files from the device
May help someone !