Bottle 框架中错误的电子邮件追溯
我正在使用 Bottle 框架。我已经设置了 @error 装饰器,这样我就可以显示我的自定义错误页面,并且如果发生任何 500 错误,我也可以发送电子邮件,但我需要在电子邮件中发送完整的回溯。有谁知道如何让框架将其包含在电子邮件中?
I am using the Bottle framework. I have set the @error
decorator so I am able to display my customized error page, and i can also send email if any 500 error occurs, but I need the complete traceback to be sent in the email. Does anyone know how to have the framework include that in the e-mail?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 @error 装饰器之后编写的 error500 函数中,为我的自定义错误页面提供服务,编写了
error.exception
和error.traceback
,这两个给出了异常和完整的回溯错误信息。in the error500 function written after the @error decorator to serve my customized error page, wrote
error.exception
anderror.traceback
, these two give the exception and complete traceback of the error message.调试模式启用完整的回溯:
从那里,您需要将 stderr 通过管道传输到文件,然后发送它。
Debugging mode enables full tracebacks:
From there, you will need to pipe
stderr
to a file, then send it.