DEBUG CONSOLE | How to Filter out system junk - Flutter
Copy & Paste the snippet below on VScode DEBUG CONSOLE filter:
!app_time_stats:, !WindowOnBackDispatcher, !ActivityThread, !libEGL, !CompatChangeReporter
Notes:
- Use '!' to exclude any log message containing the specified keyword.
- Separate multiple keywords with commas.
- The keyword can appear anywhere in the log message.
