views:

279

answers:

1

My logcat window in Eclipse only displays the first few lines of the StackTrace for each exception. This means that I often can't see where an exception occured. Is there any way to change this setting?

+1  A: 

If you're referring to the "...12 more lines..." part, you only see that for exceptions that were the cause of another exception. If the top part of the stack trace is the same as another, the full set of frames is only shown for one of them, and the other one gets the "..." treatment.

fadden