为什么我总是收到未在Azure Function中定义的错误消息?

时间:2018-11-20 12:11:42

标签: api azure-functions httpresponse kudu

我正在使用Azure函数,出于调试目的,我添加了很多个性化的回报,例如:

items

但是一旦它在Azure上发布,我会收到另一条错误消息(我尚未定义)

new HttpResponseMessage(HttpStatusCode.InternalServerError)
{
    Content = new StringContent("problem description", Encoding.UTF8, "text/plain")
};

为什么?

也许我可以在kudu中找到此错误日志,但是我不知道该怎么办...无论如何都可以返回我的个性化消息之一...

谢谢

0 个答案:

没有答案