Android adb logcat time filter

青春壹個敷衍的年華 提交于 2019-12-08 18:29:22

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"

Neuron

use

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

this will give you log

after 21st January 10.10.10.000

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!