Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用时e.printStackTrace(),单击 logcat 中的一行会跳转到有问题的代码行。
e.printStackTrace()
我想为这些跟踪添加一个标签,但Log.e(String tag, String msg, Throwable tr)只打印出异常名称。
Log.e(String tag, String msg, Throwable tr)
有没有办法做到这一点,保留点击行为?
Log.e(TAG, "some descritpion", e);
此代码应生成像 e.printStackTrace() 一样的日志,但使用 TAG 并且“点击行为”正在工作。
我正在使用带有 adt 10.0.1 的 eclipse,也许插件更新会有所帮助。