Question

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.

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top