-b 选项
该选项用于指定要操作的日志缓冲区,可以是system,events ,radio,main .它们分别对应Android手机上/dev/log文件夹下的system,events ,radio,main日志文件 。系统默认的是system和main 。该选项可以出现多次,以指定多个日志缓冲去。
比如:
adb logcat -b system -b main -b events -b radio -s robin:i
日志输出的开头几行说明了你当前查看的哪些日志缓冲区,比如上面的语句的前几行就是:
--------- beginning of /dev/log/radio
--------- beginning of /dev/log/events
--------- beginning of /dev/log/system
--------- beginning of /dev/log/main
其实“adb logcat -s robin:i”相当于“adb logcat -b system -b main -s robin:i”。
main缓冲区:我们的Log.i,Log.d,Log.i,Log.w,Log.e,Log.wtf系列函数及System.out.print系列函数以及System.erro.print系列都输出到了main缓冲区。因此我们一般用默认的就足够了。
events缓冲区:events缓冲区对应的日志文件/system/etc/event-log-tags,使用生成的日志就输出到该缓冲区。
android.database.sqlite.SQLiteDatabase的logTimeStat()函数就是使用EventLog来进行日志输出的
system缓冲区: 通过system/core/include/cutils/log.h中的SLOGD()宏就是把日志输出到System日志缓冲。
radio缓冲区:这个是什么代码输出呢?puzzle me!
-c 选项
该选项用于清空你所指定的日志缓冲区。应该就是清除其对应的日志文件
-s 选项
该选项将把tag的默认过滤级别设置为silent,这样tag默认就不显示。系统把tag的默认过滤级别是设置为Verbose,这样其tag默认就是要显示的。
-f 选项
该选项指定输出日志信息的 ,默认是stdout . 但是这里的文件是指android系统上的文件。如果我们想把日志输出到本地window系统的话,请采用如下形式的命令:
adb logcat -s robin:i>1.log
这样日志就输出了你的window的当前目录的1.log文件中。
-v 选项
日志信息包括了许多元数据域包括标签和优先级。可以通过-v选项可以用来指定日志的输出格式,以显示出特定的元数据域。
brief — Display priority/tag and PID of originating process (the default format).显示prority/tag,产生日志的进程的id,和日志消息本身。它是日志默认的输出格式。
process — Display PID only.显示priority,产生日志的进程的id,和日志消息本身
tag — Display the priority/tag only.显示prority/tag,和消息本身
thread — Display process:thread and priority/tag only.显示priority,线程和日志消息本身
raw — Display the raw log message, with no other metadata fields.只显示消息本身
time — Display the date, invocation time, priority/tag, and PID of the originating process.显示产生日志的时间,prority/tag,产生日志的进程Id,和日志消息本身。
long — Display all metadata fields and separate messages with a blank lines.显示产生日志的时间,prority/tag,产生日志的进程Id,和日志消息本身。但是日志消息本身另其一行进行显示。每个日志之间空一行。
当启动了logcat ,你可以通过-v 选项来指定输出格式:
[adb] logcat [-v ]
实例2:
adb logcat -v time -s robin:v
注意是通过-v 选项来设置输出格式.