Error reporting
Error reporting
When you’re running a public site you should always turn off the DEBUG
setting. That will make your server run much faster, and will also prevent malicious users from seeing details of your application that can be revealed by the error pages.
However, running with DEBUG
set to False
means you’ll never see errors generated by your site – everyone will just see your public error pages. You need to keep track of errors that occur in deployed sites, so Django can be configured to create reports with details about those errors.
Email reports
Server errors
When 登录查看完整内容