Android adb logcat time filter

15,290

Solution 1

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"

Solution 2

use

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

this will give you log

after 21st January 10.10.10.000

Share:
15,290
phillyville
Author by

phillyville

Updated on June 04, 2022

Comments

  • phillyville
    phillyville almost 2 years

    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.