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?
Asked
Active
Viewed 625 times
-1
-
Does this answer your question? [Android Log.v(), Log.d(), Log.i(), Log.w(), Log.e() - When to use each one?](https://stackoverflow.com/questions/7959263/android-log-v-log-d-log-i-log-w-log-e-when-to-use-each-one) – Umair Mar 11 '20 at 06:01
-
Yes @Umair, that is exactly what I was looking for. – Vivek Verma Mar 13 '20 at 10:53
-
@MohammadMoeinGolchin, Milan Tejani I appreciate efforts of both of you but let's not play this upvote game. – Vivek Verma Mar 13 '20 at 11:00
2 Answers
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:

MMG
- 3,226
- 5
- 16
- 43
-
1i already upvoted your ans yesterday. yous ans has one vote which is given by me – Milan Tejani Mar 12 '20 at 14:39
2
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:

Milan Tejani
- 372
- 5
- 21