Azure functions: 在VS Code中本地测试

huangapple go评论91阅读模式
英文:

Azure functions: test locally in VS Code

问题

我按照这个指南:https://learn.microsoft.com/en-us/azure/azure-functions/create-first-function-vs-code-typescript?pivots=nodejs-model-v3#run-the-function-locally
来在本地运行 Azure 函数。

所以,当我运行时:
Azure functions: 在VS Code中本地测试

我在 VS Code 的右下角看到错误消息:
Azure functions: 在VS Code中本地测试

而且没有办法查看详细的错误消息。

没有办法进行调试...我想知道是什么导致了这个 500 错误。

有关如何在 VS Code 中本地运行/测试/调试 Azure 函数的任何建议吗?

英文:

I followed this guide: https://learn.microsoft.com/en-us/azure/azure-functions/create-first-function-vs-code-typescript?pivots=nodejs-model-v3#run-the-function-locally
to run Azure function locally.

So, when I run:
Azure functions: 在VS Code中本地测试

I see error message on the bottom right corner of the VS Code:
Azure functions: 在VS Code中本地测试

And there is no way to see the detailed error message.

There is no way to debug...I want to know what caused this 500 error.

Any suggestions on how to run / test / debug Azure function locally in VS Code?

答案1

得分: 1

  1. 转到视图=> 输出=>它将打开带有日志的输出窗口。

Azure functions: 在VS Code中本地测试

  1. 在Visual Studio Code中打开命令面板(ctrl+shift+p),搜索Developer:Show logs(或者)Developer: Open Logs folder并选择。

Azure functions: 在VS Code中本地测试

  • 选择Developer:Show logs后,将在输出窗口中显示日志:

Azure functions: 在VS Code中本地测试

  1. 您也可以在VScode终端中运行func host start --debug,它将显示错误详细信息:

Azure functions: 在VS Code中本地测试

Azure functions: 在VS Code中本地测试

英文:

You can follow below steps to check the error logs in Visual studio code:

  1. Go to View=> Output=> it will open Output window with the logs.

Azure functions: 在VS Code中本地测试

  1. Open command palette in visual studio code(ctrl+shift+p), search for Developer:Show logs (or) Developer: Open Logs folder and select.

Azure functions: 在VS Code中本地测试

  • Once you select Developer:Show logs , it will display the logs in output window:

Azure functions: 在VS Code中本地测试

  1. You can also run func host start --debug in VScode terminal, it will display the error details:

Azure functions: 在VS Code中本地测试

Azure functions: 在VS Code中本地测试

huangapple
  • 本文由 发表于 2023年8月10日 10:59:17
  • 转载请务必保留本文链接:https://go.coder-hub.com/76872392.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定