Hacker News new | ask | show | jobs
by Caligula 4568 days ago
Can you talk about why django-devserver is so useful for you?
1 comments

The biggest thing for me is that it allows you to profile your SQL queries from AJAX calls which Django Debug Toolbar doesn't handle.
For AJAX the https://github.com/recamshak/django-debug-panel also works, although you need to install the matching chrome extension. (Don't know if it works yet with this new release of django-debug-toolbar).
That looks great. Thanks for the heads up!
I suppose it's not that hard [1] to write a logging filter to display SQL just like devserver does but without all that monkeypatching ?

[1] http://blog.ionelmc.ro/2013/12/10/adding-stacktraces-to-log-...