console.setLevel(DebugConsole.ERROR_LEVEL);
Only logs that you call "console.error" on will be printed.
See:
https://github.com/phonegap/phonegap-iphone/blob/master/PhoneGapLib/javascripts/core/debugconsole.js
For debugging to see all logs, you would set it to:
console.setLevel(DebugConsole.INFO_LEVEL);
If you have a ton of logging messages, reducing them for release will improve performance as well...
> --
> You received this message because you are subscribed to the Google
> Groups "phonegap" group.
> To post to this group, send email to phon...@googlegroups.com
> To unsubscribe from this group, send email to
> phonegap+u...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/phonegap?hl=en?hl=en
>
> For more info on PhoneGap or to download the code go to www.phonegap.com
> I'm also not seeing log message (either console.log or console.error
> or errors from bugs). I'm using XCode 4 with phonegap 0.9.5.
>
Are you sure you have phonegap.js included properly and waited for deviceready? Do any of the other phonegap functions work?
They of course do work, it's probably just your setup
> I wasn't sure what your post meant -- do we replace the regular
> phonegap js with the phonegap-iphone js or what?
no. it was just to set the log level.