如何在调试控制台中禁用线程消息?

时间:2019-02-19 02:37:13

标签: visual-studio-code

我正在使用VSCode C / C ++扩展来调试Rust应用程序。我的启动配置是:

{
  "name": "Debug",
  "type": "cppvsdbg",
  "request": "launch",
  "program": "${workspaceRoot}/target/debug/hello_world.exe",
  "args": [],
  "stopAtEntry": false,
  "cwd": "${workspaceFolder}",
  "environment": [],
  "logging": {
    "moduleLoad": false,
    "engineLogging": false,
    "exceptions": true,
    "programOutput": true
  }
}

使用此命令时,将得到以下输出:

The thread 23128 has exited with code 0 (0x0).
Hello, world!
The thread 19808 has exited with code 0 (0x0).
The thread 3232 has exited with code 0 (0x0).
The program '[19188] mao.exe' has exited with code 0 (0x0).

我想隐藏有关线程的消息,因为它们嘈杂且与我的工作无关。

如何禁用这些功能?

0 个答案:

没有答案