Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why am I seeing EGL_emulation app_time_stats in the log when running on an Android 12 emulator?

When testing a Flutter app on an emulator running Android 12, I'm seeing lines like these in the logs at regular intervals (approximately every second):

D/EGL_emulation(32175): app_time_stats: avg=312.93ms min=133.69ms max=608.57ms count=4

What do they mean, and how do I turn them off? I've never seen them on Android 11 emulators, so I'm guessing it has something to do with Android 12?

like image 315
Magnus Avatar asked Nov 15 '22 17:11

Magnus


1 Answers

  • Right click on D/EGL_emulation ... in your RUN console window
  • Click "Fold Lines Like This"
  • Edit the filter that's just been added to only contain D/EGL_emulation.
  • All these lines will be removed from the RUN console window now
like image 85
Jammo Avatar answered Dec 22 '22 22:12

Jammo