如何向 android 堆栈跟踪添加标签?
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.