I like the new Logcat since AS Dolphin. The filter adds some new possibilities, but I can’t figure out one thing: is there a way to show the debug messages only without having info or warning as well?
Question posted in Android Studio
The official documentation can be found here.
The official documentation can be found here.
3
Answers
You can type
level:levelYouWant
for examplelevel:info
for info logs onlyThis is NOT totally correct answer
But you can write only first letter + colon character
Like
D:
will just show Debug logsYou can press
ctrl + space
to show filter listlike below
So you can select minimum level, like:
or exclude some like
thats mean: all logs
who >= info
ANDmsg not contains "foobar"
mean all logs
who >= warn
ANDmsg contains "ssl"
ORmsg not contains "beta"