本文介绍了android studio logcat中的字母是什么意思?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在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?
?
解决方案
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:
这篇关于android studio logcat中的字母是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!