I have a server running over Google App Engine.
I am viewing my server's request-log via the console.
They are located under Google Cloud Platform --> Stackdriver Logging --> Logs.
I would like to view the arguments of a POST-Request.
With a GET-Request it is easy, as they are visible in the title of the entry.
They are also viable in the body of the entry, under protoPayload --> resource.
With a POST-Request, however, they are nowhere to be found.
Here are my options:
metadataprotoPayloadinsertIdloghttpRequestoperation
None of these options seem to contain the arguments of the request.
From this answer, I understand that they should be within the request-body.
How can I find them within GAE logs?
'logging.infowill add additional information to the Stackdriver logs that you are looking at.loggingoperations. So these logs are different to my understanding. Is that correct? And will I have to dologgingin order to get the arguments of any POST-Request? Thanks.logging.info()shows up in the Stackdriver request logs and that is the only way to see POST arguments. Just try it!