I have a NodeJS, Express API that I am using for a project. In my app I have a page where the employee can submit a leave request and include notes. If I make that field a single line the post goes through without error. If I make it multiline, in FF, the server reports an unexpected token. I normally log the req.body and troubleshoot but that won't work in this situation. I tried changing my logging on the Nginx Proxy, but it fails to log it either.
I know I can send the multiline post using Curl, but that isn't much help here. I need to know what FF is sending to the API so I can figure out what the problem is.
What can I do to see exactly what the FF POST is sending to the API?