In function app(HTTP trigger type), Can we find the detailed log for running functions?

Bharvi Bhut 181 Reputation points
2022-07-18T12:54:47.673+00:00
  • We are having one function app,
  • We are fetching data from webhook to our function.
  • Now we are facing one issue like getting error while function is getting trigger

As shown in below image the error is

Unexpected end of request content.

221859-msque4.png

**

  1. Can anyone help me to resolve this
  2. Is there any way to find detailed log for this particular activity?

**

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,579 questions
{count} votes

Accepted answer
  1. MughundhanRaveendran-MSFT 12,491 Reputation points
    2022-07-19T06:28:32.647+00:00

    @Bharvi Bhut ,

    This error is not specific to Azure functions.

    That's likely what you'd see if the client terminated the request body early. E.g. They disconnected before sending the number of bytes specified in the content-length or before the chunked terminator. Can you log the headers to see if the request was content-length or chunked?

    similar issue : https://github.com/dotnet/aspnetcore/issues/26278

    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.