Android logcat使用总结
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android logcat使用总结相关的知识,希望对你有一定的参考价值。
参考技术A输出指定的ring buffer(s). 可选项如下:
多选使用‘,’作为分隔符:
-b main,system,radio,events,crash,kernel
-d Dump the log and then exit (don\'t block).
dump出logcat后即退出,不阻塞。
--pid=<pid> Only print logs from the given pid.
指定输出pid打印的logcat。
例如(只输出system_server的打印):
logcat --pid= pidof system_server
-v指定输出格式,可选的格式如下:
brief — Display priority/tag and PID of the process issuing the message.
例如:
D/WindowManager( 845): Receive Input KeyEvent of Powerkey up
process — Display PID only.
例如:
W( 356) Warning: Dispc cannot support 5 layer blending(0) (DPUModule
raw — Display the raw log message, with no other metadata fields.
例如:
Checking safeboot...
tag — Display the priority/tag only.
例如:
I/chatty : uid=1000(system) PowerController expire 22 lines
thread — Display priority, PID and TID of process issuing the message.
例如:
I( 845: 885) uid=1000(system) ActivityManager expire 8 lines
threadtime — Display the date, invocation time, priority, tag, and the PID
and TID of the thread issuing the message. (the default format).
例如:
04-15 10:34:11.352 587 1282 I chatty : uid=1000(system) watchdog expire 10 lines
time — Display the date, invocation time, priority/tag, and PID of the
process issuing the message.
例如:
04-15 12:43:42.509 V/FingerprintService( 845): mDaemon was null, reconnect to fingerprint
long — Display all metadata fields, separate messages with blank lines.
例如:
-v threadtime 是默认值:
另外,还可以额外添加修饰符:
例如(color,会以不同的颜色分别高亮不同优先级的打印):
logcat -v tag,color
将logcat保存到本地。
如果长时间抓取logcat,一般推荐 -f -r -n 一起使用。
例如(保存到data/logcat.txt,每个文件最大2M,最多保存20个文件):
logcat -f data/logcat.txt -r 2048 -n 20
设置过滤器。
-s Set default filter to silent. Equivalent to filterspec \'*:S\'
slient,最高优先级显示。
使用正则表达式。
例如:
logcat -e ^check.+$
例如:
-g/-G 用于查看/修改ring buffer的大小。
Android攻城狮使用LogCat方式调试程序
1. LogCat 是用来获取系统日志信息的工具,可以得到的信息包括 Dalvik 虚拟机信息,进程信息,Android 运行时信息,以及应用程序信息。 2. 我们可以通过添加程序日志的方式,来对程序进行简单的追踪。LogCat 是比较轻便简洁的调试方式。 3. 与Debug调试的区别 Debug调试一般用于相对来说比较复杂的问题; LogCat一般用于相对来说比较容易追踪的问题; 二者是互补的关系。 ----------------- 如果代码区的下方窗口没有LogCat标签,可以去点击顶部菜单栏的Window --> show View --> Other --> Android --> LogCat。 Log日志级别 1.Log.v(tag,message);//verbose模式,打印最详细的日志,颜色为黑色 2.Log.d(tag,message);//debug级别的日志,颜色为蓝色 3.Log.i(tag,message);//info级别的日志,颜色为绿色 4.Log.w(tag,message);//warn级别的日志,颜色为橙色 5.Log.v(tag,message);//error级别的日志,颜色为红色 tag用来标记Log消息的源头,而message则是这条Log的内容。 错误信息的级别最高,其次是警告信息,然后是通知信息以及Debug信息,级别最低的是详细信息。 从日志的输出数量来算,error,warn,info,debug,verbose,数量从少到多
以上是关于Android logcat使用总结的主要内容,如果未能解决你的问题,请参考以下文章
Android中打开其他应用(或者系统应用)Activity或者Fragment总结