19

I receive multiple messages of the following kind when I do anything in Android emulator in the flutter app

D/EGL_emulation(6380): app_time_stats: avg=1505.58ms min=1505.58ms max=1505.58ms count=1

What is it?

apt-get_install_skill
  • 2,818
  • 10
  • 27
alessio toesca
  • 201
  • 1
  • 2
  • 3
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Dec 15 '21 at 05:04
  • 5
    to me it's pretty clear he asks what that message means and none of the answer answer that question, instead explain how to hide it.. :) – mx1up Oct 19 '22 at 16:09

7 Answers7

15

For Visual Studio Code Users:

You can always filter messages by using the Filter input on the top right corner.

For this particular case, you can hide those messages by applying this filter: !D/EGL

BEFORE: Without filtering:

BEFORE: Without filtering

AFTER: With filtering: enter image description here

Felipe
  • 643
  • 8
  • 13
5
  • Right click on D/EGL_emulation ...
  • 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
Jammo
  • 1,838
  • 4
  • 25
  • 39
4

In Terminal (Mac/ Linux):

If you run the flutter command inside terminal, to filter those messages simply just run this command to filter

flutter run | grep -v "D/EGL_emulation"

or

flutter run | grep -v "app_time_stats"
Alphapico
  • 2,893
  • 2
  • 30
  • 29
3

I was used an emulator with android S, my friend recommended me to use android R and the log its over. try it!

  • Good suggestion, worked for me! Downgraded api on the emulator from 13 to 11 and it helped to speed things up – Interkot Aug 25 '23 at 00:12
3

1.) Right click on "D/EGL_emulation" click fold line like this

1)

2.) This tab will popup

3.) Edit the currently selected line and just left "D/EGL_emulation:" then press ok. enter image description here

0

This is an Android Studio emulator message, and in this case, is a "Debug" message. Please see here to filter out the Debug messages from either Android Studio or VS Code, while keeping the Warnings and Errors.

Greg Fay
  • 407
  • 5
  • 6
-1

1.right click on "D/EGL_emulation( 6380): app_time_stats" 2.fole lines like this

it work for me

  • As it’s currently written, your answer is unclear. Please [edit] to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Apr 25 '22 at 04:07
  • Actually, this works great. Thanks. I clicked on "Fold Lines Like This", then edited the filter to just contain `D/EGL_emulation`. PERFECT. Thank you – Jammo May 30 '22 at 21:05