我已经完全按照this创建了launch.json
文件,用于在VS Code上调试我的Electron Application。但是console.log()
没有将任何内容打印到调试控制台。
如果我将"console": "integratedTerminal"
添加到launch.json
,则日志显示在内置终端上。我希望日志显示在调试控制台上。我该如何解决?
答案 0 :(得分:7)
在您使用的launch.json
配置中,添加
"outputCapture": "std"
示例
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"outputCapture": "std",
...
}
]
}