Why am I seeing EGL_emulation app_time_stats in the log when running on an Android 12 emulator?(为什么在Android 12模拟器上运行时,我在日志中看到egl_emulation app_time_stats?)
问题描述
在运行Android 12的模拟器上测试颤动应用程序时,我在日志中看到有规律的间隔(大约每秒)出现这样的行:
D/EGL_emulation(32175): app_time_stats: avg=312.93ms min=133.69ms max=608.57ms count=4
它们是什么意思,以及如何关闭它们?我从来没有在Android 11模拟器上见过它们,所以我猜这和Android 12有关?
推荐答案
所有这些egl_emulation消息确实非常烦人。到目前为止,我的解决方案是创建自定义LogCAT筛选器。
您可以通过单击logcat工具栏最右侧的下拉列表并选择编辑筛选器配置来打开LogCAT筛选器配置。您必须设置两个正则表达式:
^(?!(EGL_emulation))
在日志标记字段中筛选带有";egl_emulation";标记的所有邮件。^(?!(?))
在程序包名字段中筛选来自没有调试信息的应用程序的所有消息。这不如仅显示所选应用程序筛选器but the closest thing to a similar behavior so far。
这也是我的配置截图,以防文本不清楚:
不过,我真的希望这个问题能尽快在上游解决;)
这篇关于为什么在Android 12模拟器上运行时,我在日志中看到egl_emulation app_time_stats?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么在Android 12模拟器上运行时,我在日志中看到egl_emulation app_time_stats?
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01