What is the meaning of alphabets in android studio logcat? [duplicate]

本小妞迷上赌 提交于 2020-06-09 07:17:09

问题


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?

?


回答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:




回答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:



来源:https://stackoverflow.com/questions/60630018/what-is-the-meaning-of-alphabets-in-android-studio-logcat

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!