Android LogCat 日志记录
日志级别列表如下(从低到高):
-
- V — Verbose (lowest priority)
- D — Debug
- I — Info
- W — Warning
- E — Error
- F — Fatal
- S — Silent (highest priority, on which nothing is ever printed)
在类里面可以使用
Log.v log.i 等方法来记录日志,其中:
1.第一个参数为字符串类型的tag,它可以用来标识该日志的key(键),
2.第二个参数为日志内容
本文出自 无忧之路 - 博客园