I have an error on my Android Application and one of the really annoying things that LogCat does is write

exception Caused at android.

at android...

at android...

at android...

and 21 more

I need to read the error inside that 21 more. Is there a way to do it? I've tried filtering the results but no luck.

link|improve this question

1  
have you tried try and catch statements.If not try it – Nitin Jan 25 at 11:17
Good Idea! I'll give that a try – W.K.S Jan 25 at 11:44
Ok, so in my application - I get a force close error when my addPreferencesFromResource() method gets called from my PreferenceActivity so I added try-catch statements around this bit. The preference activity started, but there were no widgets there and I got no error outputs of any kind :( – W.K.S Jan 25 at 11:55
have you print the error with Log.e("",""+e) in catch block – Nitin Jan 25 at 12:11
Yeah, I did. I got no output. – W.K.S Jan 25 at 13:50
show 1 more comment
feedback

1 Answer

up vote 2 down vote accepted

You can debug the app and add a conditional breakpoint for your exception, or just a normal breakpoint if you know where it's thrown exactly. Then when you're there, you have full access to the stack trace and, even better, to the context variables when the exception occured.

link|improve this answer
Trouble is i'm not sure where to put the breakpoint. I am following an example and I've checked to make sure nothing is different and it fails. I have no idea what part is causing the error. – W.K.S Jan 25 at 11:17
That's why I suggested using a conditional breakpoint: you don't have to set a breakpoint at a specific place, you can specify "breakpoint happens whenever XXX exception is thrown" – Guillaume Jan 25 at 11:18
Ah! That's new to me (still a beginner), i'll give that a go. – W.K.S Jan 25 at 11:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.