Skip to content Skip to sidebar Skip to footer

What Is The Meaning Of Alphabets In Android Studio Logcat?

While running the application in android studio logcat is generated and there are alphabets at the beginning of every line. what is the meaning of those alphabets? ?

Solution 1:

these alphabet is for various log options:

see this link : Log option

A is for ASSERT

D is for DEBUG

E is for ERROR

I is for INFO

V is for VERBOSE

W is for WARN

you can filter log message by above option by clicking here so you can see that particular log only:

Select log option

Solution 2:

You have choosen verbose logcat. In logcat some logs are info (I), some are errors (E) , some are warnings (W) and some other logs.

See here:

enter image description here

Post a Comment for "What Is The Meaning Of Alphabets In Android Studio Logcat?"