'D/EGL_emulation( 6380): app_time_stats: avg=1505.58ms min=1505.58ms max=1505.58ms count=1
i have this message when i do anything in android emulator in the flutter app
Solution 1:[1]
I was used an emulator with android S, my friend recommended me to use android R and the log its over. try it!
Solution 2:[2]
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.
Solution 3:[3]
1.right click on "D/EGL_emulation( 6380): app_time_stats" 2.fole lines like this
it work for me
Solution 4:[4]
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:
Solution 5:[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
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | |
Solution 2 | Greg Fay |
Solution 3 | Kangkang chan |
Solution 4 | Felipe |
Solution 5 | Jammo |