I am using the latest phonegap/cordova version 2.1. and I am getting too many logs in eclipse logcat:
everything is logged twice using f.e.
console.log("test")
CordovaLog test
Web Console test
This could be disabled by a filter in eclipse, but there must be smarter solution.
You should edit the following entry
in the
config.xmlfile.Available values are ERROR, WARN, INFO, DEBUG, VERBOSE (default=ERROR)
Setting to
ERRORyou will see the least amount of log messages.