I'm having a heck of a time debugging my task queues in Google app engine as a bug in the task queue becomes very hard to track down as I don't know exactly what data is being posted.

I was hoping that I could get the dev_appserver.py application to display the POST data in the request line, but I can't seem to find a way to do that. The documentation offers up a debug option, but it doesn't seem to print the post data.

Does anyone know if this is possible?

link|improve this question

72% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You could use the logging library to print the body of the request like this (if you're using webapp):

import logging
class YourRequestHandler(webapp.RequestHandler):
    def post(self):
        logging.info("body:\n%s" % self.request.body)
link|improve this answer
Definitely works, that's what I ended up doing - thanks! – Simon Nov 14 '10 at 5:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.