android DDMS logcat 按名称过滤

发布于 2024-09-09 23:26:47 字数 155 浏览 6 评论 0原文

有没有办法按名称设置 logcat 过滤器?我意识到他们有按日志标签过滤器,但我的应用程序可能有各种不同的标签。我可以通过 pid 使用过滤器,但是当然每次我重新编译和重新部署这个 pid 都会发生变化。我希望能够通过 com.mycompany.appname 或类似的东西来调整它。这可能吗?

Is there any way to setup a logcat filter by name? I realize they have the filter by log tag, but my app may have various different tags. I can use the filter by pid, but of course everytime i recompile and redeploy this pid changes. I'd like to be able to fitler it by com.mycompany.appname or something along those lines. is this even possible?

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

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

发布评论

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

评论(1

故事与诗 2024-09-16 23:26:47

我通过向日志标签添加前缀来做到这一点。例如:

  • NameOfMyApp-Home
  • NameOfMyApp-Settings

,然后我使用 grep

adb shell logcat | grep NameOfMyApp

I do this by adding a prefix to my log tags. For ejample:

  • NameOfMyApp-Home
  • NameOfMyApp-Settings

and then I use grep with:

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