如何向 android 堆栈跟踪添加标签?

发布于 2024-10-29 03:52:09 字数 189 浏览 0 评论 0原文

使用 e.printStackTrace() 时,单击 logcat 中的一行会跳转到有问题的代码行。

我想向这些跟踪添加一个标签,但 Log.e(String tag, String msg, Throwable tr) 仅打印出异常名称。

有没有办法做到这一点,保留点击行为?

When using e.printStackTrace(), clicking a line in logcat jumps to the offending line of code.

I'd like to add a tag to these traces, but Log.e(String tag, String msg, Throwable tr) only prints out the exception name.

Is there a way to do this, that retains the click behaviour?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

坐在坟头思考人生 2024-11-05 03:52:09

Log.e(TAG, "some descritpion", e);

这段代码应该生成像 e.printStackTrace() 那样的日志,但带有 TAG 并且“点击行为”正在工作。

我正在使用 eclipse 和 adt 10.0.1,也许插件更新会有所帮助。

Log.e(TAG, "some descritpion", e);

This code should produce logs like e.printStackTrace() does but with TAG and that 'click behaviour' is working.

I'm using eclipse with adt 10.0.1, maybe plugin update will help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文