How to exclude specific lines from being visible in the debug console?
Im trying to exclude any line starting with 2022:
I tried !exclude 2022, but im not sure how to use this command and i couldn't find anything while searching about.
CodePudding user response:
It should be ! followed by what you want to exclude, so:
!2022.
Take a look: https://github.com/Dart-Code/Dart-Code/issues/1980#issuecomment-679092524

