为什么在Android 12模拟器上运行时,我在日志中看到egl_emulation app_time_stats?

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模拟器上运行时,我在日志中看到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?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)