Logcat filtering and row count

This problem puzzled me, and I hope to find an answer from you.

I am trying to display the last 100 entries (or lines) of logs that have their own xx class and level Info tags

this is done using

Adb logcat -t 100 -v long xx: i *: s

I only get the last 12 or so xx events: I'm not 100.

could it be that logcat reads the last 100 lines of logs and filters them based on my criteria? Should it display the last 100 lines marked?

+3
source share
1 answer

Write adb logcat -t 100 -v long xx:I , without *:s .

+1
source

All Articles