本文介绍了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:
查看此链接:日志选项
A
用于ASSERT
D
用于DEBUG
E
用于ERROR
I
用于INFO
V
用于VERBOSE
W
用于WARN
您可以通过单击此处按以上选项过滤日志消息,这样您就只能看到该特定日志:
you can filter log message by above option by clicking here so you can see that particular log only:
这篇关于android studio logcat中的字母是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!