Blackberry - System.out.println() using eclipse plugin

blackberry, blackberry-eclipse-plugin, blackberry-storm

Solution

First it is not enough to "Run" your app, you have to "Debug" to see the output. Second you need to make sure your eclipse console is set to "BlackBerry Simulator Output Console".

Once you've done that you should be able to see a whole lot of log statements, most of them from BlackBerry but yours should be in there too.

Problem

I am just entered into the Blackberry Arena.. I am using `Eclipse Plugin` for running my testing application to simulator. So, In my code somewhere I have add `System.out.println("Print");` statements, but by debugging or running app to simulator, I couldn't find any log statements printed to eclipse console. Is there anything that I need to take care for using `println()` methods ?

Original source