Android logcat日志分析

目录

  • 一、简介
  • 二、logcat命令
    • 2.1 adb logcat 命令格式
    • 2.2 adb logcat 命令参数
    • 2.3 adb logcat 日志缓冲区
    • 2.4 adb logcat 格式化输出
      • 2.4.1 logcat -v brief
      • 2.4.2 logcat -v long
      • 2.4.3 logcat -v process
      • 2.4.4 logcat -v tag
      • 2.4.5 logcat -v raw
      • 2.4.6 logcat -v time
      • 2.4.7 logcat -v threadtime
    • 2.5 adb logcat 日志级别
  • 三、adb logcat 示例
    • 3.1 adb logcat -b all -v threadtime --pid=4321 > /Users/xxx/logcat.log
    • 3.2 adb logcat -b all -c
    • 3.3 adb logcat -b all -d -v threadtime --pid=4321 -t 10
  • 四、Android 代码操作logcat日志
    • 4.1 Android代码读取logcat日志
    • 4.2 Android代码实现将logcat日志输出到文件


一、简介

logcatandroid 中的一个命令行工具,可以用于得到程序的log信息。下面介绍 adb logcat 中的详细参数命令以及如何才能高效的打印日志,或者把日志保存到我们指定的位置。


二、logcat命令

可以输入 adb logcat --help,查看一下一些简单的数据格式:

adb logcat --help

输出结果:

Usage: logcat [options] [filterspecs]General options:-b, --buffer=<buffer>       Request alternate ring buffer(s):main system radio events crash default allAdditionally, 'kernel' for userdebug and eng builds, and'security' for Device Owner installations.Multiple -b parameters or comma separated list of buffers areallowed. Buffers are interleaved.Default -b main,system,crash,kernel.-L, --last                  Dump logs from prior to last reboot from pstore.-c, --clear                 Clear (flush) the entire log and exit.if -f is specified, clear the specified file and its related rotatedlog files instead.if -L is specified, clear pstore log instead.-d                          Dump the log and then exit (don't block).--pid=<pid>                 Only print logs from the given pid.--wrap                      Sleep for 2 hours or when buffer about to wrap whichevercomes first. Improves efficiency of polling by providingan about-to-wrap wakeup.Formatting:-v, --format=<format>       Sets log print format verb and adverbs, where <format> is one of:brief help long process raw tag thread threadtime timeModifying adverbs can be added:color descriptive epoch monotonic printable uid usec UTC year zoneMultiple -v parameters or comma separated list of format and formatmodifiers are allowed.-D, --dividers              Print dividers between each log buffer.-B, --binary                Output the log in binary.Outfile files:-f, --file=<file>           Log to file instead of stdout.-r, --rotate-kbytes=<n>     Rotate log every <n> kbytes. Requires -f option.-n, --rotate-count=<count>  Sets max number of rotated logs to <count>, default 4.--id=<id>                   If the signature <id> for logging to file changes, then clear theassociated files and continue.Logd control:These options send a control message to the logd daemon on device, print its return message ifapplicable, then exit. They are incompatible with -L, as these attributes do not apply to pstore.-g, --buffer-size           Get the size of the ring buffers within logd.-G, --buffer-size=<size>    Set size of a ring buffer in logd. May suffix with K or M.This can individually control each buffer's size with -b.-S, --statistics            Output statistics.--pid can be used to provide pid specific stats.-p, --prune                 Print prune rules. Each rule is specified as UID, UID/PID or /PID. A'~' prefix indicates that elements matching the rule should be prunedwith higher priority otherwise they're pruned with lower priority. Allother pruning activity is oldest first. Special case ~! represents anautomatic pruning for the noisiest UID as determined by the currentstatistics.  Special case ~1000/! represents pruning of the worst PIDwithin AID_SYSTEM when AID_SYSTEM is the noisiest UID.-P, --prune='<list> ...'    Set prune rules, using same format as listed above. Must be quoted.Filtering:-s                          Set default filter to silent. Equivalent to filterspec '*:S'-e, --regex=<expr>          Only print lines where the log message matches <expr> where <expr> isan ECMAScript regular expression.-m, --max-count=<count>     Quit after printing <count> lines. This is meant to be paired with--regex, but will work on its own.--print                     This option is only applicable when --regex is set and only useful if--max-count is also provided.With --print, logcat will print all messages even if they do notmatch the regex. Logcat will quit after printing the max-count numberof lines that match the regex.-t <count>                  Print only the most recent <count> lines (implies -d).-t '<time>'                 Print the lines since specified time (implies -d).-T <count>                  Print only the most recent <count> lines (does not imply -d).-T '<time>'                 Print the lines since specified time (not imply -d).count is pure numerical, time is 'MM-DD hh:mm:ss.mmm...''YYYY-MM-DD hh:mm:ss.mmm...' or 'sssss.mmm...' format.--uid=<uids>                Only display log messages from UIDs present in the comma separate list<uids>. No name look-up is performed, so UIDs must be provided asnumeric values. This option is only useful for the 'root', 'log', and'system' users since only those users can view logs from other users.filterspecs are a series of<tag>[:priority]where <tag> is a log component tag (or * for all) and priority is:V    Verbose (default for <tag>)D    Debug (default for '*')I    InfoW    WarnE    ErrorF    FatalS    Silent (suppress all output)'*' by itself means '*:D' and <tag> by itself means <tag>:V.
If no '*' filterspec or -s on command line, all filter defaults to '*:V'.
eg: '*:S <tag>' prints only <tag>, '<tag>:S' suppresses all <tag> log messages.If not specified on the command line, filterspec is set from ANDROID_LOG_TAGS.If not specified with -v on command line, format is set from ANDROID_PRINTF_LOG
or defaults to "threadtime"

2.1 adb logcat 命令格式

adb logcat [<option>] ... [<filter-spec>] ...
adb logcat [选项...] [过滤项...],

2.2 adb logcat 命令参数

选项描述举例
-s输出指定 tag 的日志,相当于过滤器表达式 *:Slogcat -s tag
-f <file>设置logcat 内容保存的位置,默认是stdoutlogcat -f sdcard/log.txt
-r <kbytes>每输出 时轮替日志文件,默认是16 必须配合 -flogcat -f sdcard/log.txt -r 1
-n <count>设置日志输出的最大数目, 需要 -r 参数
-v <format>设置日志的输出格式,注意只能设置一项;详见下文 格式化输出logcat -v threadtime
-D输出各个日志缓冲区之间的分隔线logcat -D …
-c清除(清空)所选的缓冲区并退出,默认清除 mainsystemcrashlogcat -c;logcat -b all -c
-d将日志转储到屏幕并退出logcat -d > log.txt
-e <expr>输出正则匹配的日志消息logcat -e [匹配数据] -m 5
-m <count>输出 行后退出logcat -m 5
-t <count>仅输出最新的行数,此选项包括 -d 功能logcat -t 5
-t '<time>'输出自指定时间以来的最新行,此选项包括 -d 功能logcat -t ‘01-26 20:52:41.820’
-g获取指定日志缓冲区的大小并退出logcat -g
-G设置日志环形缓冲区的大小,可以在结尾处添加 KMlogcat -G 2M
-b加载可供查看的日志缓冲区,更多可见下文 日志缓冲区logcat -b system
-B以二进制文件形式输出日志
-S在输出中包含统计信息,以识别和定位日志垃圾信息发送者
--pid=<pid>仅输出来自给定 PID 的日志logcat --pid=4321

2.3 adb logcat 日志缓冲区

Android 日志系统为日志消息保留了多个环形缓冲区,但并非多有的日志消息都会发送到默认的环形缓冲区。这里可以采用 logcat -b 命令查看设备的其他缓冲区:

缓冲区描述举例
radio输出通信系统的日志,包含无线装置/电话相关消息logcat -b radio
events输出event模块的日志logcat -b events
main主日志缓冲区(默认),不包含系统和崩溃日志消息logcat -b main
system输出系统日志logcat -b system
crash输出崩溃日志logcat -b crash
all输出所有缓冲区日志logcat -b all
default输出main、system、crash缓冲区日志logcat -b default

2.4 adb logcat 格式化输出

使用 -v 命令来修改 log 的输出格式,以显示特定的元数据字段:

格式描述
brief显示优先级、标记以及发出消息的进程的 PID
long显示所有元数据字段,并使用空白行分隔消息
process仅显示 PID
raw显示不包含其他元数据字段的原始日志消息
tag仅显示优先级和标记
thread旧版格式,显示优先级、PID 以及发出消息的线程的 TID
threadtime(默认值)显示日期、调用时间、优先级、标记、PID 以及发出消息的线程的 TID
time显示日期、调用时间、优先级、标记以及发出消息的进程的 PID
color使用不同的颜色来显示每个优先级
descriptive显示日志缓冲区事件说明。此修饰符仅影响事件日志缓冲区消息,不会对其他非二进制文件缓冲区产生任何影响
epoch显示自 1970 年 1 月 1 日以来的时间(以秒为单位)
uid如果访问控制允许,则显示 UID 或记录的进程的 Android ID
usec显示精确到微秒的时间
UTC显示 UTC 时间
year将年份添加到显示的时间
zone将本地时区添加到显示的时间

对于 -v 选项,如果需要查看线程区别使用 logcat -v threadtime 就可以了,其他日志基本也是少用的。

下面列举几种输出格式进行说明。


2.4.1 logcat -v brief

格式:

<priority>/<tag>(<pid>): <message>

示例:

D/TAG( 1785): Disconnected process message: 10, size: 0

2.4.2 logcat -v long

格式:

[ <datetime> <pid>:<tid> <priority>/<tag> ]

示例:

[ 08-28 22:39:39.974  1785: 1832 D/TAG ] Disconnected process message: 10, size: 0

2.4.3 logcat -v process

格式:

<priority>(<pid>) <message>

示例:

D( 1785) Disconnected process message: 10, size: 0 

2.4.4 logcat -v tag

格式:

<priority>/<tag>: <message>

示例:

D/TAG: Disconnected process message: 10, size: 0

2.4.5 logcat -v raw

格式:

<message>

示例:

Disconnected process message: 10, size: 0

2.4.6 logcat -v time

格式:

<datetime> <priority>/<tag>(<pid>): <message>

示例:

08-28 22:39:39.974 D/TAG( 1785): Disconnected process message: 10, size: 0

2.4.7 logcat -v threadtime

格式:

<datetime> <pid> <tid> <priority> <tag>: <message>

示例:

08-28 22:39:39.974  1785 1832 D TAG: Disconnected process message: 10, size: 0

2.5 adb logcat 日志级别

按日志级别过滤日志:

adb logcat <tag>[:priority]

tag 表示标签;priority 表示输出级别;

日志默认级别是 V,如果错误日志我们选择 E 就可以,Android 的日志分为如下几个优先级(priority):

选项描述举例
V–Verbose(最低优先级)adb logcat *:V
D– Debugadb logcat *:d
I– Infoadb logcat *:I
W– Warningadb logcat *:W
E– Erroradb logcat *:E
F– Fataladb logcat *:F
S– Silentadb logcat *:S

*可以是某个tag,如果没有指明,就表示所有。


三、adb logcat 示例

多数情况下,logcat命令参数都是组合使用。


3.1 adb logcat -b all -v threadtime --pid=4321 > /Users/xxx/logcat.log

将进程ID为4321的应用,所有缓冲区日志,按照 threadtime 格式输出到 logcat.log 日志文件中。

adb logcat -b all -v threadtime --pid=4321 > /Users/xxx/logcat.log

3.2 adb logcat -b all -c

将所有缓冲区日志清空。

adb logcat -b all -c

3.3 adb logcat -b all -d -v threadtime --pid=4321 -t 10

将进程ID为4321的应用,所有缓冲区日志,按照 threadtime 格式输出最新的10行日志(最多10行)。

adb logcat -b all -d -v threadtime --pid=4321 -t 10

四、Android 代码操作logcat日志

4.1 Android代码读取logcat日志

private void getLogcat(){String[] comand = new String[]{"logcat", "-b", "all", "-d", "-v", "threadtime", "--pid=4321", "-t", "10"};try{Process exec = Runtime.getRuntime().exec(comand);BufferedReader reader = new BufferedReader(new InputStreamReader(exec.getInputStream()));StringBuilder sb = new StringBuilder();String line;int i = 0;while ((line = reader.readLine()) != null) {sb.append(line).append("\r\n");}Log.i("TAG", "logcat content = " + sb.toString());}catch (Exception ex){Log.e("TAG", "Exception = " + ex.toString());}
}

4.2 Android代码实现将logcat日志输出到文件

public class LogcatProcesser {private Process logcatToFileProcess;/*** 获取日志输出文件*/private String getLogcatFile(){String path = Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + "cwlogcat";File file = new File(path);if(!file.exists()){file.mkdirs();}return new File(file.getAbsolutePath() + File.separator + "cw_logcat.log").getAbsolutePath();}/*** 开启日志输出到文件*/private void startLogcatToFile(){int pid = android.os.Process.myPid();String path = getLogcatFile();try{String[] cmds = new String[]{"logcat","-b", "all", "-v", "threadtime", "--pid=" + pid, "-f", path};if(logcatToFileProcess == null) {// 持续将日志输出到日志文件中ProcessBuilder processBuilder = new ProcessBuilder(cmds);// 启动进程并重定向输出logcatToFileProcess = processBuilder.start();// 读取进程的错误流,以防止阻塞readStream(logcatToFileProcess.getErrorStream());}}catch (Exception ex){Log.e("TAG", "Exception = " + ex.toString());}}/*** 停止日志输出到文件*/private void stopLogcatToFile(){try{if(logcatToFileProcess == null){return;}logcatToFileProcess.destroy();logcatToFileProcess = null;}catch (Exception ex){Log.e("TAG", "Exception = " + ex.toString());}}/*** 读取进程的错误流*/private void readStream(final java.io.InputStream is) {new Thread(new Runnable() {@Overridepublic void run() {try {byte[] buffer = new byte[1024];while (is.read(buffer) != -1) {// 读取并忽略输入流中的数据}is.close();} catch (IOException e) {Log.e("TAG", "Exception = " + ex.toString());}}}).start();}
}



本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/648901.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

使用Halcon匹配助手进行模板匹配

使用Halcon匹配助手进行模板匹配 文章目录 使用Halcon匹配助手进行模板匹配1. 选择匹配方法2. 创建模板3. 检测模板4. 优化匹配速度 使用Halcon匹配助手&#xff0c;可以很方便地选择模板图像&#xff0c;设置匹配参数&#xff0c;并测试匹配结果.Halcon匹配助手支持下面几种匹…

静态独享长效IP的优点有哪些?静态独享长效IP有哪些应用场景?

随着互联网的不断发展&#xff0c;IP地址作为网络通信中的重要标识&#xff0c;其重要性日益凸显。静态独享长效IP作为一种特殊的IP地址类型&#xff0c;具有许多优点&#xff0c;适用于多种应用场景。本文将详细介绍静态独享长效IP的优点以及适用场景。 一、静态独享长效IP的优…

25考研每日的时间安排

今天要给大家分享一下25考研每日的时间安排。 没有完美的计划&#xff0c;只有合适的计划。 仅供参考 很多人说复习不要只看时长而是要看效率&#xff0c;所以学多长时间不重要&#xff0c;重要的高效率完成任务。 完美的计划 这个计划看起来很完美&#xff0c;从早到晚有学习…

js合并相同结构的对象,内容不覆盖

场景 两个结构相同的对象&#xff0c;要将它们具备相同key的数据合并&#xff0c;一般的方法会导致后面覆盖前面&#xff0c;所以需要特殊处理。 用一个简单的demo数据作为例子。 let obj1 { name: [{ text: “王妃1” }, { text: “王妃2” }], age: [{ num: “12” }, { nu…

关于MySQL的基本查询(多表查询等)

1.创建student和score表 CREATE TABLE student ( id INT(10) NOT NULL UNIQUE PRIMARY KEY , name VARCHAR(20) NOT NULL , sex VARCHAR(4) , birth YEAR, department VARCHAR(20) , address VARCHAR(50) ); 创建score表。SQL代码如下&#xff1a; CREATE…

体验华为云对话机器人服务 CBS

&#x1f3e1;浩泽学编程&#xff1a;个人主页 &#x1f525; 推荐专栏&#xff1a;《深入浅出SpringBoot》《java对AI的调用开发》 《RabbitMQ》《Spring》《SpringMVC》 &#x1f6f8;学无止境&#xff0c;不骄不躁&#xff0c;知行合一 文章目录 前言一、开通…

开源的API Gateway项目- Kong基于OpenResty(Nginx + Lua模块)

Kong 是一个在 Nginx 内运行的开源 API 网关和微服务抽象层。它是用于处理 API 流量的灵活、可扩展、可插入的工具。 Kong 提供了以下功能&#xff1a; 用户登录&#xff1a;Kong 提供了多种认证插件&#xff0c;像 JWT、OAuth 2.0 等&#xff0c;可以满足用户登录需求。Toke…

CSDN年度回忆录(扫码的官方数据版本)

引言 官方搞了个活动 就是扫码 查看年度报告的 我印象中 这方面做的最好的就是 支付宝 每年都可以看到自己的钱花在哪里了 今年数据大概率清一色饮食 都汤姆花在了炒股上 这两天A股有点逆转的样子 但是我想说&#xff0c;不要去&#xff08;他在骗你的压岁钱&#xff09; …

MySQL运维实战(4.6) SQL_MODE之NO_BACKSLASH_ESCAPES

作者&#xff1a;俊达 在MySQL中&#xff0c;默认情况下&#xff0c;反斜杠&#xff08;\&#xff09;被用作转义字符&#xff0c;转义反斜杠(\)后一个字符&#xff1b;当设置NO_BACKSLASH_ESCAPES后&#xff0c;反斜杠(\)将不作为转义字符&#xff0c;而被视为普通字符。 下面…

Ubuntu22.04执行sudo apt-get update时报错:sh: 1: /usr/lib/cnf-update-db: not found

报错如下&#xff0c;错误原因使用的sources-list配置和系统版本不匹配 $sudo apt-get update 获取:16 http://us.archive.ubuntu.com/ubuntu jammy-updates/restricted Sources [56.6 kB] 已下载 1,006 kB&#…

CSS 实现 flex布局最后一行左对齐的方案「多场景、多方案」

目录 前言解决方案场景一、子项宽度固定&#xff0c;每一行列数固定方法一&#xff1a;模拟两端对齐方法二&#xff1a;根据元素个数最后一个元素动态margin 场景二、子项的宽度不确定方法一&#xff1a;直接设置最后一项 margin-right:auto方法二&#xff1a;使用:after(伪元素…

多场景建模:阿里MARIA

Multi-scenario ranking framework with adaptmulti-scenario ranking framework with adaptive feature learning 背景 多模态搜索场景支持用户通过不同模态的Query来表达多样的搜索需求。 拍照搜索&#xff08;Visual Search&#xff09;&#xff1a;实拍图作为query相似商…

pyspark学习_dataframe常用操作_02

#回顾01常用操作 from pyspark import SparkSession,DataFramespark SparkSession.builder.getOrCreate()peopleDF spark.read.json("people.json")peopleDF.printSchema()#显示DataFrame的模式信息 peopleDF.show()#显示DataFrame的数据信息 peopleDF.foreach(pri…

unity 网络地址加载图片

/// <summary> /// 网络地址加载图片 /// </summary> /// <param name"url">地址</param> /// <param name"raw">图片显示位置</param> public void loadImage(string url,RawImage raw) { …

【Godot4自学手册】第六节实现人物的挥剑操作

同学们好&#xff01;本节学习一下人物挥剑操作。 一、将鼠标左键单击设为输入映射 单击项目选择项目设置&#xff0c;在添加新动作填写sword&#xff0c;然后点击添加。在动作列表中,单击sword后面的加号&#xff0c;在弹出对话框中单击鼠标左键&#xff0c;最后单击确定&am…

Flink Checkpoint 超时问题和解决办法

第一种、计算量大&#xff0c;CPU密集性&#xff0c;导致TM内线程一直在processElement&#xff0c;而没有时间做CP【过滤掉部分数据&#xff1b;增大并行度】 代表性作业为算法指标-用户偏好的计算&#xff0c;需要对用户在商城的曝光、点击、订单、出价、上下滑等所有事件进…

Linux--基础开发工具篇(1)(yum)

1.Linux 软件包管理器 yum 1.1yum是什么&#xff1f;什么是软件包&#xff1f; yum是什么&#xff1f; yum是一个软件下载安装管理的一个客户端&#xff0c;就如小米应用商店&#xff0c;华为应用商城。 Linux中软件包可能有依赖关系--yum会帮助我们解决依赖关系的问题。 什么是…

算法训练营Day51(动态规划12)

309.最佳买卖股票时机含冷冻期 力扣&#xff08;LeetCode&#xff09;官网 - 全球极客挚爱的技术成长平台 提醒 本题加了一个冷冻期&#xff0c;状态就多了&#xff0c;有点难度&#xff0c;要把各个状态分清&#xff0c;思路才能清晰 注意初始化dp[0][0]、dp[0][1]、dp[0][2]…

使用OpenCV实现一个简单的实时人脸跟踪

简介&#xff1a; 这个项目将通过使用OpenCV库来进行实时人脸跟踪。实时人脸跟踪是一项在实际应用中非常有用的技术&#xff0c;如视频通话、智能监控等。我们将使用OpenCV中的VideoCapture()函数来读取视频流&#xff0c;并使用之前加载的Haar特征级联分类器来进行人脸跟踪。 …

GPTs 英语老师 现在不能发布为Averyone了 翻译 时态 结构 例句 一清二楚

https://chat.openai.com/g/g-l3S5WDgP7-english-teacher The crowd began to shout, but the drunk was unaware of the danger. 翻译为中文: 人群开始大声喊叫&#xff0c;但那个醉酒的人没有意识到危险。 分析时态和句子语法: 时态&#xff1a;这个句子使用的是过去时。语法…