一、logcat对日志过滤

1.# logcat --help

# logcat --help
Usage: logcat [options] [filterspecs]
options include:
-s Set default filter to silent.
Like specifying filterspec '*:s'
-f <filename> Log to file. Default to stdout
-r [<kbytes>] Rotate log every kbytes. ( if unspecified). Requires -f
-n <count> Sets max number of rotated logs to <count>, default
-v <format> Sets the log print format, where <format> is one of: brief process tag thread raw time threadtime long -c clear (flush) the entire log and exit
-d dump the log and then exit (don't block)
-t <count> print only the most recent <count> lines (implies -d)
-t '<time>' print most recent lines since specified time (implies -d)
-T <count> print only the most recent <count> lines (does not imply -d)
-T '<time>' print most recent lines since specified time (not imply -d)
count is pure numerical, time is 'MM-DD hh:mm:ss.mmm'
-g get the size of the log's ring buffer and exit
-b <buffer> Request alternate ring buffer, 'main', 'system', 'radio',
'events', 'crash' or 'all'. Multiple -b parameters are
allowed and results are interleaved. The default is
-b main -b system -b crash.
-B output the log in binary.
-S output statistics.
-G <size> set size of log ring buffer, may suffix with K or M.
-p print prune white and ~black list. Service is specified as
UID, UID/PID or /PID. Weighed for quicker pruning if prefix
with ~, otherwise weighed for longevity if unadorned. All
other pruning activity is oldest first. Special case ~!
represents an automatic quicker pruning for the noisiest
UID as determined by the current statistics.
-P '<list> ...' set prune white and ~black list, using same format as
printed above. Must be quoted. filterspecs are a series of
<tag>[:priority] where <tag> is a log component tag (or * for all) and priority is:
V Verbose (优先级最低)
D Debug
I Info
W Warn
E Error
F Fatal
S Silent (supress all output) (最高优先级,不会打印任何内容) '*' means '*:d' and <tag> by itself means <tag>:v If not specified on the commandline, filterspec is set from ANDROID_LOG_TAGS.
If no filterspec is found, filter defaults to '*:I' If not specified with -v, format is set from ANDROID_PRINTF_LOG
or defaults to "brief"

1. logcat命令位置:/system/bin/logcat

2.logcat的常用用法

# logcat *:W 过滤日志则会将该级别及以上的日志输出

# logcat ActivityManager:I MyApp:D *:S 表示输出tag=“ActivityManager”的Info以上级别日志,输出tag=“MyApp”的Debug以上级别日志,及其它tag的Silent级别日志(即屏蔽其它 tag 日志)。

# logcat -d logcat应该是动态打印的,加-d后打印完log后退出,不阻塞
# logcat -t 20 只打印最近的20行log,-T也是类似的功能,但是打印完后不退出。
# logcat -f a.txt -f保存到文件中,不使用重定向符号的
# logcat | grep -i myapp 忽略大小写。
# logcat | grep --color=auto -i priv-app 匹配到的“priv-app”会显示出颜色
# logcat | grep --color=auto 1979 只打印出进程PID为1979的log
# logcat -c && logcat
# logcat -v time 打印时加上时间
# logcat -g 打印各个环形缓冲区的大小后退出
# logcat -S 打印出统计信息
# logcat | grep -E "Theft|u-blox" grep -E 正则表达式,可以一次性检索多个关键字
# logcat <tag1>:<priority1> <tag2>:<priority2> 过滤低优先级的日志

# logcat *:E   只查看错误打印

3.有 3 种方式使用 logcat 打印日志:
可以通过 IDE(比如 Android Studio)提供的 logcat 窗口查看打印的日志
可以通过 adb 命令使用 logcat 在本地计算机进行日志查看
通过 adb 命令进入模拟器或者所连设备的 shell 命令窗口,进行 logcat 的操作和使用

4.设置输出日志等级
通过设置优先级,过滤掉低优先级的日志,使用方式如: adb logcat <tag1>:<priority1> <tag2>:<priority2>
示例: logcat PowerManagerService:I PackageManager:I 表示logcat时不打印PowerManagerService和PackageManager的优先级低于Info的log

5.logcat选择打印的缓冲区:
# logcat -b <buffer> 可以指定要打印的环缓冲区,“main”,“system”,“radio”或“events”。 允许多个-b连用,这样打印的结果是交错的,默认为: -b main -b system -b crash。
radio - 查看缓冲区的相关的信息.
events - 查看和事件相关的的缓冲区.
main - 查看主要的日志缓冲区.
system - 与系统相关的日志信息.

6. logcat默认的几种输出格式为

格式:logcat -v threadtime

(1)brief格式为:<priority>/<tag>(<pid>): <message>  eg: D/HeadsetStateMachine( 1785): Disconnected process message: 10, size: 0

(2)process格式为:<priority>(<pid>) <message>  eg: D( 1785) Disconnected process message: 10, size: 0 (HeadsetStateMachine)

(3)tag格式为:<priority>/<tag>: <message>  eg: D/HeadsetStateMachine: Disconnected process message: 10, size: 0

(4)raw格式为:<message>   eg: Disconnected process message: 10, size: 0

(5)time格式为:<datetime> <priority>/<tag>(<pid>): <message>  eg: 08-28 22:39:39.974 D/HeadsetStateMachine( 1785): Disconnected process message: 10, size: 0

(6)threadtime格式为:<datetime> <pid> <tid> <priority> <tag>: <message>  eg: 08-28 22:39:39.974 1785 1832 D HeadsetStateMachine: Disconnected process message: 10, size: 0

(7)long格式为:[ <datetime> <pid>:<tid> <priority>/<tag> ] <message>  eg: [ 08-28 22:39:39.974 1785: 1832 D/HeadsetStateMachine ] Disconnected process  message: 10, size: 0

二、日志打印函数

1.程序中使用ALOGx(),SLOGx(),RLOGx()来分别打印app,system,radio的log,

x表示下面6种打印级别:
V Verbose
D Debug
I Info
W Warn
E Error
F Fatal

比如:
#define LOG_TAG "LedHal"
ALOGI("hal_led_ioctl called: which=%d, status=%d", which, status);
打印如下:

I/LedHal ( 2284): hal_led_ioctl called: which=0, status=0 //打印等级/Tag (PID): message

三、日志统计

1.# logcat -b all -S 可以统计出各个log buffer中最健谈的log的进程、UID、TAG

# logcat -b all -S
size/num main radio events system crash stats performance security kernel Total
Total / / / / / / / / / /
Now / / / / / / /
Logspan ::38.987(3.9%) ::44.731(24.2%) ::41.166(96.9%) ::44.791(%) :03.21 ::35.716 ::48.058
Overhead
update time=, report time=, buffer rate = Byte/sec, log rate = sec-
buffer chatty rate = Byte/sec, log chatty rate = sec- 最健谈的main log:
Chattiest UIDs in main log buffer: Size +/- Pruned
UID PACKAGE BYTES NUM
com.android.systemui -%
system -%
PID/UID COMMAND LINE " "
/ system_server
/ com.coloros.persist.system 最健谈的main log:
Chattiest UIDs in radio log buffer: Size +/- Pruned
UID PACKAGE BYTES NUM
radio -3.6%
system .2X 最健谈的event log:
Chattiest UIDs in events log buffer: Size +/- Pruned
UID PACKAGE BYTES NUM
system +4.3%
PID/UID COMMAND LINE " "
/ system_server 最健谈的system log:
Chattiest UIDs in system log buffer: Size +/- Pruned
UID PACKAGE BYTES NUM
system -%
PID/UID COMMAND LINE " "
/ system_server
/ com.coloros.persist.system 最健谈的crash log:
Chattiest UIDs in crash log buffer: Size
UID PACKAGE BYTES
root 最健谈的performance log:
Chattiest UIDs in performance log buffer: Size
UID PACKAGE BYTES
system
PID/UID COMMAND LINE "
/ system_server 最健谈的PID:
Chattiest PIDs: Size Pruned
PID/UID COMMAND LINE BYTES NUM
/ com.android.phone
/ system_server 最健谈的TID:
Chattiest TIDs: Size Pruned
TID/UID COMM BYTES NUM
/ com.android.phone
/ android.bg 最健谈的events log中的TAG:
Chattiest events log buffer TAGs: Size Prune
TAG/UID TAGNAME BYTES NUM
auditd
/ am_pss 最健谈的TAG:
Chattiest TAGs: Size
TID/PID/UID LOG_TAG NAME BYTES
/ SST
auditd

Android中logcat和日志打印的更多相关文章

  1. Android中对Log日志文件的分析[转]

    一,Bug出现了, 需要“干掉”它 bug一听挺吓人的,但是只要你懂了,android里的bug是很好解决的,因为android里提供了LOG机制,具体的底层代码,以后在来分析,只要你会看bug, a ...

  2. 02_JNI中Java代码调用C代码,Android中使用log库打印日志,javah命令的使用,Android.mk文件的编写,交叉编译

     1  编写以下案例(下面的三个按钮都调用了底层的C语言): 项目案例的代码结构如下: 2 编写DataProvider的代码: package com.example.ndkpassdata; ...

  3. android adb logcat获取日志文件

    一般情况,可以直接在电脑终端上输入logcat来查看手机运行日志,但是测试工作者为了抓取日志文件来给开发人员,需要把日志导出到特定文件中.如下文. 以小米1s手机为例 步骤1:打开第一个终端窗口 ad ...

  4. android中Logcat的深层理解

    Android的开发也能够归类为嵌入式设备的开发.即便不是嵌入式开发,依旧要注意对内存和处理的使用.养成一个好的习惯对自己的帮助是非常大的. 在Log的源代码中能够看到这种凝视: The order ...

  5. 【转载】理解Android中垃圾回收日志信息

    本文转自:http://droidyue.com/blog/2014/11/08/understanding-garbage-collection-output-messages-in-android ...

  6. Android中垃圾回收日志信息

    原因 GC_CONCURRENTfreed 178K, 41% free 3673K/6151K, external 0K/0K, paused 2ms+2msGC_EXPLICITfreed 6K, ...

  7. 在android中使用logback-android日志框架配置 slf4j + logback

    为什么使用 slf4j + logback logbak定位于log4j的替代者,logback同样支持slf4j,方便被替换.在Android平台上,我在使用log4中遇到tag混乱的问题.相比lo ...

  8. Android adb logcat输出日志显示不全解决方案

    在终端中使用adb logcat打印服务器json数据,如果返回数据过大超过4000字节(4K)即会截断不显示 原因:logcat在对于message的内存分配大概是4k左右.所以超过的内容都直接被丢 ...

  9. android中Logcat的TAG过滤

    如果代码中有这样的log: Log.e("Foo", "error in foo"); Log.d("Foo", "debug i ...

随机推荐

  1. English trip -- VC(情景课)1 D

    Read 阅读 Welcome! Meet our new student. His first name is Ernesto.  欧内斯托 His last name is Delgado. 德尔 ...

  2. [洛谷P1507]NASA的食物计划 以及 对背包问题的整理

    P1507 NASA的食物计划 题面 每个物品有三个属性,"所含卡路里":价值\(v\),"体积":限制1\(m_1\),以及"质量":限制 ...

  3. Destroy the Colony CodeForces - 1111D (可逆背包,计数)

    大意:给定字符串$s$, 保证长度为偶数, 给定q个询问, 每次询问给定两个位置$x$,$y$, 可以任意交换字符, 要求所有字符$s[x],s[y]$在同一半边, 剩余所有同种字符在同一半边的方案数 ...

  4. HDU-4850 Wow! Such String! (构造)

    Problem Description Recently, doge starts to get interested in a strange problem: whether there exis ...

  5. JAVA System.arraycopy 和Arrays.copyof 效率比较

    System.arraycopy()源码.可以看到是native方法: native关键字说明其修饰的方法是一个原生态方法,方法对应的实现不是在当前文件,而是在用其他语言(如C和C++)实现的文件中. ...

  6. 微信公众号平台开发(二)信息的分类.md

    在上一篇博客中,我们只是简单地与微信服务器建立了连接,接下来就是从微信服务器中接收信息了.在SecurityController中,我定义了两个方法(get和post).Get方法是我们用来与微信服务 ...

  7. spring boot 学习(七)小工具篇:表单重复提交

    注解 + 拦截器:解决表单重复提交 前言 学习 Spring Boot 中,我想将我在项目中添加几个我在 SpringMVC 框架中常用的工具类(主要都是涉及到 Spring AOP 部分知识).比如 ...

  8. React Js之组件(Component)与state

    React Js组件: 组件(Component)是为了更好的维护我们的应用,可以在不影响其他的组件的情况下更新或者更改组件. state:是标记数据的来源,我们使state比较简单和单一,如果我们有 ...

  9. HDU 1936 区间贪心

    /* *区间贪心.前几天刚做了POJ 1328 ...思路完全相同... *最多有100个表情,100行文字.遍历寻找每个表情的所在区间.时间复杂度大约在10^5 ~ 10^6 可以接受. *然后对每 ...

  10. httpclient 连接参数

    http.socket.timeout(读取超时) 套接字毫秒级超时时间(SO_TIMEOUT),这就是等待数据,换句话说,在两个连续的数据包之间最大的闲置时间. 如果超时是0表示无限大的超时时间,即 ...