vs代码调试控制台中未显示grunt.log.writeln

时间:2018-12-16 13:06:53

标签: node.js debugging visual-studio-code gruntjs

我正在尝试在VS Code中调试gruntfile.js。我的launch.json看起来像这样:

{
   "name: Grunt",
   "type": "node",
   "request": "launch",
   "program": "/usr/local/bin/grunt",
   "args": ["build_script"],
   "cwd": "${workspaceRoot}",
   "stopOnEntry": false,
   "console": "internalConsole"
}

它可以工作,我可以使用断点等对其进行调试,但是问题是,用grunt.log.writeln(..),grunt.fail.warn(..)完成的所有输出都不会显示在调试控制台。

如何使grunt使用grunt.log的调试控制台?

谢谢

0 个答案:

没有答案