Phonegap/Cordova too many logs CordovaLog Web Console

cordova, cordova-2.0.0, logging

Solution

You should edit the following entry

<log level="DEBUG"/>

in the `config.xml` file.

Available values are ERROR, WARN, INFO, DEBUG, VERBOSE (default=ERROR)

Setting to `ERROR` you will see the least amount of log messages.

Problem

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.

Original source