Christian
Christian

Reputation: 1058

How to hide specific String Output in VSCode Terminal?

I am getting spammed with these 2 lines

V/AudioManager(10244): getStreamMaxVolume  treamType: 3
V/AudioManager(10244): getStreamVolume  streamType: 3 volume: 3

in my Terminal and I would like to hide these 2 messages because it makes reading my own outputs nearly impossible. This is the launch.json for flutter:

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "habit_app_new",
            "request": "launch",
            "type": "dart"
        }
    ]
}

Is there some kind of "filter" option in VSCode?

Upvotes: 0

Views: 1058

Answers (1)

Mike Slinn
Mike Slinn

Reputation: 8403

I have not used dart or flutter, but this answer for flutter seems spot on.

I think it should work for you.

Upvotes: 1

Related Questions