I'm using the development server and seeing a POST request that
results in a 500 error:
[16/Mar/2010 10:10:51] "POST /mysite HTTP/1.1" 500 56458
I'm not getting any errors logged or tracebacks. The request isn't
reaching my view even though my urls.py is correct and the app is
enabled in settings.py.
Is there any way I can debug? Can I dump the request? I created a
simple request logger middleware:
class RequestLogger(object):
def process_request(self, request):
syslog.syslog("**** RequestLogger - %s" %
(request.get_full_path()))
But the request isn't being dumped, so something is going wrong before
my middleware is running.
Thanks
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.