Yuri Muhin's CV
The tag of a log message is a short string indicating the system component from which the message originates (for example, "View" for the view system).
The priority is one of the following character values, ordered from lowest to highest priority:
V: Verbose (lowest priority)
D: Debug
I: Info
W: Warning
E: Error
F: Fatal
S: Silent (highest priority, on which nothing is ever printed)
You can obtain a list of tags used in the system, with priorities, by running logcat and observing the first two columns of each message, given as <priority>/<tag>.
adb logcat | findstr "adjoy" WHERE the name of the applications will change to your current app`s name
adb logcat "*:W"
for example
adb logcat "*:D" will show logs for Debug
adb logcat "*:I" will show logs for Info
adb logcat "*:E" will show logs for Error
adb logcat "*:F" will show logs for Fatal
and so on