Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my Django app, I'm getting a 404 Page Not Found response that looks like it's being caused by some logic in one of my custom template tags -- but I don't know which one.

Using Django Debug Toolbar's Request Vars panel, I can see the view causing the 404 is go_back.utils._register_wrapped_view -- which is how I know it's coming from one of my go_back.utils template tags.

Unfortunately, because template tags need to be decorated and thus show up as _registered_wrapped_view, I can't tell which tag it is, much less where in the tag code the problem happens. (The tag code is a special utility which works with urls and calls resolve in several places so it's not obvious.)

Thus I can't use the normal import pdb; pdb.set_trace() approach because I don't know where to set the trace.

So how can I get pdb to break when the 404 happens so I can see the stack trace leading to that point?

share|improve this question
Put pdb on the templatetag code or view class. – Tarsis Azevedo Aug 28 '12 at 4:32
@TarsisAzevedo -- the issue is I don't know which template tag or view class is causing the 404. – Ghopper21 Aug 28 '12 at 12:22

3 Answers

I'm not sure if you know this:

You can try putting import pdb; pdb.set_trace() in the function which you want to debug and development server. When that function triggers it will break into pdb shell and you can debug your code.

share|improve this answer
Yep, I use that all the time. I need a post-mortem approach for this one, as I don't know which template tag or view is causing the problem. – Ghopper21 Aug 28 '12 at 12:23

Try using the Django Debug Toolbar, it can intercept redirects, good for when you cant find where to add a breakpoint.

In settings make sure you have

DEBUG_TOOLBAR_CONFIG = {'INTERCEPT_REDIRECTS': True}
share|improve this answer
Thanks, I do use Django Debug Toolbar. I had INTERCEPT_REDIRECTS set to False. No change in behavior when I set it to True. In the Request Vars panel, it shows the view as go_back.utils._register_wrapped_view -- which is how I know it's coming from one of my template tags (which are in the go_back.utils module). Unfortunately, because template tags need to be decorated and thus show up as _registered_wrapped_view, I can't tell which one it is. – Ghopper21 Aug 28 '12 at 12:30
Hmm. The fact you get a 404 when its really a 500 sounds like Debug is off and Django cant find the 500 template, when standard behavior would be to print the exception detail page when DEBUG is True. Also make sure TEMPLATE_DEBUG is true (equals DEBUG in default settings). – Lincoln B Aug 30 '12 at 3:19
Strange -- I've got DEBUG = True and TEMPLATE_DEBUG = DEBUG as usual... – Ghopper21 Aug 30 '12 at 3:55

One thing you can do is - use traceback http://docs.python.org/dev/library/traceback.html

import traceback
traceback.print_stack()

Traceback provides bunch of other options too for tracing the flow.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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