1

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.

Michael Donohue
  • 11,776
  • 5
  • 31
  • 44
Naina
  • 211
  • 1
  • 4
  • 14
  • 1
    Searching 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 Answers2

1

In RIM API SDK there is EventLogger class. Use it for logging purposes.

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