Django 错误报告 - 如何知道哪个用户触发了错误?
有没有一种方法可以自定义 Django 错误报告,以便当它向我发送电子邮件时,它可以让我知道哪个用户触发了错误?
如果重要的话,我使用的是 Django 1.2。
非常感谢!
Is there a way I can customize Django error reporting so when it emails me it lets me know which user triggered the error?
I'm in Django 1.2 if it matters.
Much Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您不想使用哨兵,您可以使用这个简单的中间件将用户信息附加到错误邮件中:
您可以简单地将此类放入 Django 项目下方任意位置的 *.py 文件中,并添加对
MIDDLEWARE_CLASSES
。即,如果您将其放入项目根目录(settings.py 所在位置)的“中间件”文件中,则只需添加middleware.ExceptionUserInfoMiddleware
即可。If you don't want to use sentry you can use this simple middleware to attache the user-infos to the error mail:
You can simply put this class in a *.py file anywhere below your Django project and add a reference to
MIDDLEWARE_CLASSES
. I.e. if you put it in a file "middleware" in the project root (where your settings.py is) , you simply addmiddleware.ExceptionUserInfoMiddleware
.我强烈推荐 http://readthedocs.org/docs/sentry/en/latest/该作业的index.html。
I highly recommend http://readthedocs.org/docs/sentry/en/latest/index.html for the job.