When debugging in the blackberry simulator, the console prints out a lot of other information relevant to the simulator along with the debug information printed in the application I develop. Is there a way to print only the debug messages of the application I am running in the simulator?
+1
A:
I always format my debug messages in specific way:
System.out.print(" ---RTP:"+message);
So it's easy to find specific message from my app.
Also, it's great to scrollock console searching or reading messages.
Max Gontar
2009-08-30 10:26:36
Thanks, I too do something similar, however wading through the messages being printed is a pain. Do we have some flags or something to prevent the simulator from printing its own messages?
Ram
2009-08-31 05:16:49
It would be great to have such ability, but I can't find it... BTW, EventLog may be an alternative.
Max Gontar
2009-08-31 08:40:09