0

I'm using Chrome Dev Tools to debug my application, but I have to go through alerts() which are a burden, said alerts being popped up o the screen of the phone. But how to show console.logs? They don't seem to work!

enter image description here

I tried several approaches with no success

cordova run android --device --debug --consolelog
cordova run android --device --debug -cl
cordova run android --device --cl
João Pimentel Ferreira
  • 14,289
  • 10
  • 80
  • 109

1 Answers1

1

From your screenshot it seems that you have the log level in Chrome Dev Tools set to "warnings only" so console.log statements will not be visible.

DaveAlden
  • 30,083
  • 11
  • 93
  • 155