无法在VSCode中调试Azure Functions核心工具

时间:2019-04-30 05:29:08

标签: azure visual-studio-code azure-functions azure-functions-core-tools

我目前无法在VS Code中调试我的Azure Functions核心工具。 我正在使用npm软件包azure-functions-core-tools@2。 正如我在许多资源上所读到的,func host start / func start应该始终以--inspect=9229开始节点进程。如您所见,在我的设置中情况并非如此:

[4/30/19 4:51:25 AM] Starting language worker process:node  "/usr/lib/node_modules/azure-functions-core-tools/bin/workers/node/dist/src/nodejsWorker.js" --host 127.0.0.1 --port 50426 --workerId 3e909143-72a3-4779-99c7-376ab3aba92b --requestId 656a9413-e705-4db8-b09f-da44fb1f991d --grpcMaxMessageLength 134217728
[4/30/19 4:51:25 AM] node process with Id=92 started
[4/30/19 4:51:25 AM] Generating 1 job function(s)
[...]
[4/30/19 4:51:25 AM] Job host started
Hosting environment: Production

所有更改托管环境的尝试均失败。我试图将FUNCTIONS_CORETOOLS_ENVIRONMENT添加到本地配置中,导致出现错误:

An item with the same key has already been added. Key: FUNCTIONS_CORETOOLS_ENVIRONMENT

我尝试使用--debug在启动和任务设置中添加几个环境变量,以更改项目设置。什么都没有。

我目前正在Windows Linux子系统(WSL)上运行此程序,除了它确实运行良好之外。

有人知道我在这里做错了什么吗?

1 个答案:

答案 0 :(得分:1)

我认为默认情况下不启用调试功能。您必须为此设置语言工作者参数,才能像documented一样工作。

  1. local.settings.json

      

    要在本地调试,请在local.settings.json文件的"languageWorkers:node:arguments": "--inspect=5858"下添加Values并将调试器附加到端口5858。

  2. 使用func CLI
    您可以使用--language-worker argument

  3. 进行设置
func host start --language-worker -- --inspect=5858
  1. 在VS代码中
    如果您使用VS Code和Azure Functions扩展进行开发,则--inspect将自动添加,因为在.vscode/tasks.json中设置了相应的环境变量
{
  "version": "2.0.0",
  "tasks": [
    {
      "label": "runFunctionsHost",
      "type": "shell",
      "command": "func host start",
      "isBackground": true,
      "presentation": {
        "reveal": "always"
      },
      "problemMatcher": "$func-watch",
      "options": {
        "env": {
          "languageWorkers__node__arguments": "--inspect=5858"
        }
      },
      "dependsOn": "installExtensions"
    },
    {
      "label": "installExtensions",
      "command": "func extensions install",
      "type": "shell",
      "presentation": {
        "reveal": "always"
      }
    }
  ]
}

如果您愿意,也可以直接设置此环境变量,而不是也将其添加到local.settings.json中。