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

I just went to the Blackberry Arena.

I use Eclipse Plugin to run my test application for the simulator.

So, in my code somewhere, I add the System.out.println("Print"); statements System.out.println("Print"); but debugging or running the simulator application, I could not find any log statements printed on the eclipse console.

Is there anything I need to use println() methods?

+4
source share
2 answers

First, itโ€™s not enough to โ€œlaunchโ€ your application, you need to โ€œDebugโ€ to see the result. Secondly, you need to make sure your eclipse console is installed in the BlackBerry Simulator Output Console.

After you have done this, you will be able to see many log operators, most of them from BlackBerry, but yours should be there too.

+4
source

Run it in debug mode in the BlackBerry simulator. He will be there, unfortunately, there will also be many BlackBerry print messages.

+2
source

Source: https://habr.com/ru/post/1310358/


All Articles