欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

修改Android Studio 的 Logcat 缓冲区大小操作

时间:2021-07-20 08:55:32|栏目:Android代码|点击:

找到 Android Studio的安装目录\bin\idea.properties 文件

将文件中的idea.cycle.buffer.size=1024 改成 例如: idea.cycle.buffer.size=102400

另一个设置方式是:

补充知识:logcat 设置缓存区 设置buff

logcat 的buff 有2种分配方式,一种是在kernel的,一种是logd, MM用的是在logd的这种的

system/core/liblog/Android.mk

ifneq ($(TARGET_USES_LOGD),false)
liblog_sources := logd_write.c log_event_write.c
else
liblog_sources := logd_write_kern.c
endif

修改logcat的buff有可以从开发者选项中设置,

也可以从logcat -G 10M 设置

root@xx:/ # logcat -g
main: ring buffer is 4Mb (839Kb consumed), max entry is 5120b, max payload is 4076b
system: ring buffer is 4Mb (2Mb consumed), max entry is 5120b, max payload is 4076b
crash: ring buffer is 4Mb (0b consumed), max entry is 5120b, max payload is 4076b
root@xx:/ # logcat -G 11M
root@xx:/ # logcat -g       
main: ring buffer is 11Mb (854Kb consumed), max entry is 5120b, max payload is 4076b
system: ring buffer is 11Mb (2Mb consumed), max entry is 5120b, max payload is 4076b
crash: ring buffer is 11Mb (0b consumed), max entry is 5120b, max payload is 4076b
root@xx:/ # 

上一篇:Android优化之电量优化的实现

栏    目:Android代码

下一篇:Android自定义View实现水面上涨效果

本文标题:修改Android Studio 的 Logcat 缓冲区大小操作

本文地址:http://www.codeinn.net/misctech/159688.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有