Android adb logcat 时间过滤器

发布于 2024-09-15 16:34:18 字数 78 浏览 4 评论 0原文

有谁知道如何过滤掉logcat('adb shell logcat'),以便它只显示当前日期和时间之后的日志语句?提前致谢。

Does anyone know how to filter out the logcat ('adb shell logcat') so that it only shows the log statements after current date and time ? Thanks in advance.

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

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

发布评论

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

评论(4

云仙小弟 2024-09-22 16:34:18

在当前日期和时间之后创建的活动?或者只记录当前时间之后的语句?
是不是像“adb logcat -c; adb logcat”那么简单

Activities created after the current date and time? Or just log statements after the current time?
Could it be as simple as "adb logcat -c; adb logcat"

爱,才寂寞 2024-09-22 16:34:18

使用

adb logcat -t "01-21 10:10:10.000"

这会给你日志

1月21日10月10日之后

use

adb logcat -t "01-21 10:10:10.000"

this will give you log

after 21st January 10.10.10.000

只涨不跌 2024-09-22 16:34:18
$ adb logcat -T 1

这将打印最近的行以及从现在开始的所有新行(传递 -T 0 无效,将记录警告并默认为 -T 1)。

其中 -T (来自 adb logcat --help)是:

  -T <count>                  Print only the most recent <count> lines
                              (does not imply -d).
$ adb logcat -T 1

This will print the most recent line plus any new lines starting from now on (passing -T 0 is invalid and will log a warning and default to -T 1).

Where -T (from adb logcat --help) is:

  -T <count>                  Print only the most recent <count> lines
                              (does not imply -d).
千と千尋 2024-09-22 16:34:18

在启动 logcat 之前,首先将参数 -c 传递给它
在终端中你会说

adb logcat -c
adb logcat

这会产生一个新的日志。

Before you start up logcat first pass it the argument -c
In the terminal you would say

adb logcat -c
adb logcat

This would produce a fresh log.

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