In Android through Logcat we can see application debug output and logs. In Blackberry is there any thing like Logcat? If not then where we can see its debug output.
Asked
Active
Viewed 557 times
1
-
1Searching for '+blackberry +logcat' turns up several duplicates of this question, among them: http://stackoverflow.com/questions/4022433/tool-to-get-blackberry-log – Michael Donohue Oct 03 '11 at 20:55
2 Answers
1
above answer is good even though you can use system.out.println(string what you want to see in log list ); and you can see the output in blackberry simulator output console for example,
try{
}catch(Exception e){
System.out.println(e.getMessage());
}
when ever exception will come at that time you can see the exception details in the blackberry simulator output console

Govindarao Kondala
- 2,862
- 17
- 27