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?
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?
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:
D/EGL_emulation ...
D/EGL_emulation
.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"
flutter run 2>&1 | Select-String -Pattern "EGL_emulation" -NotMatch
–
Gratulation I was used an emulator with android S, my friend recommended me to use android R and the log its over. try it!
here's what I've been using now, which also mutes the info on text input fields:
flutter run 2>&1 | Select-String -Pattern "EGL_emulation", "D/InputMethodManager", "D/InsetsController", "W/RemoteInputConnectionImpl", "I/TextInputPlugin" -NotMatch
you can add all other messages that occour too with the pattern
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.
1.right click on "D/EGL_emulation( 6380): app_time_stats" 2.fole lines like this
it work for me
D/EGL_emulation
. PERFECT. Thank you –
Basuto © 2022 - 2024 — McMap. All rights reserved.