1

I created cordova application using cordova cli. Is there any way to monitor logs for my application ?

Sivakumar
  • 1,089
  • 1
  • 13
  • 24

1 Answers1

1

For C# part there is possibility (Visual Studio allows you to completely debug it), but I don't think that is what you are looking for.

I assume you are looking for JavaScript logs for your Cordova application. There is no possibility to debug the JavaScript code according to MSDN nor is it possible to collect the console output directly.

However remote debugging should be possible as described by Sergei Grebnov's answer. As he also tells there, it is quite working solution to debug as much as possible on desktop browser. It has worked quite well for me until adding much plugins..

Community
  • 1
  • 1
Roope Hakulinen
  • 7,326
  • 4
  • 43
  • 66