Android:如何从 LogCat 读取整个堆栈跟踪(包括 ..X 个更多错误)?
我的 Android 应用程序出现错误,LogCat 所做的最烦人的事情之一就是写入
异常是在android上引起的。
在安卓...
在安卓...
在安卓...
还有 21 个
我需要阅读另外21个里面的错误。有办法做到吗?我尝试过过滤结果,但没有成功。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以调试应用程序并为您的异常添加条件断点,或者只是一个正常的断点,如果你知道它到底在哪里抛出。然后,当您在那里时,您可以完全访问堆栈跟踪,甚至更好地访问异常发生时的上下文变量。
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.