There is a bug in vscode-chrome-debug as indicated by Jimmy Thomson on the Github Issue page!
Here is the Dirty fix from Jimmy Thomson:
- Go to the vscode extension directory: C: \ Users \ .vscode \ extensions \ or ~ / .vscode / extensions, then go to vsmobile.cordova-tools-1.2.3 / node_modules / vscode-chrome-debug-core / out / src / chrome / and open consoleHelper.js.
- Look at line 37 for outputText = 'Unimplemented console API:' + m.type;
- change this to outputText = 'Unimplemented console API:' + JSON.stringify (m);
source share