how to see phonegap javascript log messages on xcode console
cordova, javascript, logging
Solution
In Phonegap 3.0 you have to add a plugin for console.log to work in the xcode console.
$ phonegap local plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-console.git
More info: http://docs.phonegap.com/en/edge/guide_cli_index.md.html#The%20Command-line%20Interface
Problem
I am trying to develop a basic hello world application with phonegap on Xcode. But i can not see the log messages on Xcode console. I have tried console.log and debug.log but they did not worked for me? How can i see javascript log messages on xcode console?