我刚开始使用django-piston
。
通常,在Django中,当我的视图抛出异常(并且我处于DEBUG=True
模式)时,我会得到一个非常好的,有用的500错误页面,其中包含堆栈跟踪。
但是当我的Django-piston启用视图抛出异常而不是一个好的堆栈跟踪页面时,我得到一个简单的错误页面,只打印出异常消息。
例如......
Piston/0.2.3rc1 (Django 1.3) crash report:
Method signature does not match.
Signature should be: domain
Exception was: exceptions must be old-style classes or derived from BaseException, not NoneType
如何获得有用的Django堆栈跟踪页面?
感谢。