可以在 android DDMS LOG 上搜索吗?
任何使用类似于 (CTRL + F) 的简单方法在 DDMS 日志中进行搜索的方法。 我知道按 LOG_TAG 进行过滤以及在文本文档中复制粘贴以执行 CTRL+F 的其他简单方法。
Any way to search within DDMS Log using some simple way more similar to (CTRL + F).
I know of filtering by LOG_TAG as well other simple way to copy-paste in a text document to do CTRL+F.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您谈论的是Eclipse,则没有这样的搜索工具。
这是我探索日志的方法。
将
adb
shell 输出重定向到日志文件。然后使用 vim 浏览日志文件。唯一的问题是 vim 不会在更改时自动重新加载文件。因此,我改编了 vim 过滤脚本 在每次搜索时重新加载文件,只需添加
edit!执行搜索之前的
行(第 8 行)。现在,当使用 \F 的 \f 进行搜索时,缓冲区会自动重新加载。检查脚本的 vikia 页面 了解更多信息。
If you are talking about Eclipse there isn't such search tool.
Here is my way to explore logs.
Rredircting
adb
shell output to the logfile.Then explore logfile with vim. The only problem is that vim doesn't automatically reload file on change. So I adapted vim filtering script to reload file on every search, just adding
edit!
line before search performing (line 8).Now when using \f of \F for search, buffer is automatically reloading. Check script's vikia page for more information.