Android adb logcat 时间过滤器
有谁知道如何过滤掉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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在当前日期和时间之后创建的活动?或者只记录当前时间之后的语句?
是不是像“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"
使用
adb logcat -t "01-21 10:10:10.000"
这会给你日志
use
adb logcat -t "01-21 10:10:10.000"
this will give you log
这将打印最近的行以及从现在开始的所有新行(传递
-T 0
无效,将记录警告并默认为-T 1
)。其中
-T
(来自adb logcat --help
)是: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
(fromadb logcat --help
) is:在启动 logcat 之前,首先将参数 -c 传递给它
在终端中你会说
这会产生一个新的日志。
Before you start up logcat first pass it the argument -c
In the terminal you would say
This would produce a fresh log.