Catch Exceptions in production
Project description
DJANGO EXCEPT CATCHER
django-except-catcher is a simple tool to catch and store exceptions and 500 errors in production django applications.
When a 500 error happens a record with the details is stored in the database.
Exceptions are stored and listed so you can find similar errors and look their "yellow error page", just like in django's debug mode.
It doesn't require to run any daemon in order to work, just install a regular django module.
Inspired by django's AdminMailHandler.
For an example out of the box, take a look here.
INSTALLATION
Install django-except-catcher:
pip install django-except-catcher
Add to urls.py:
path('', include(('except_catcher.urls', 'except_catcher'), namespace="except_catcher"))
add to settings.py:
INSTALLED_APPS = [
...
'except_catcher',
]
LOGGING = {
'version': 1,
'handlers': {
'error_catcher': {
'level': 'ERROR',
'class': 'except_catcher.handlers.CatchExceptionHandler',
},
},
'loggers': {
'django.request': {
'handlers': [ 'error_catcher'],
'level': 'ERROR',
'propagate': False,
},
}
}
run migrations:
./manage.py migrate except_catcher
You can purposely throw an exception in the url (must be superuser):
http://localhost:8000/test-exception/
Now go to url:
http://localhost:8000/errors/
Only the superuser have access to these reports.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-except-catcher-1.0.1.tar.gz
.
File metadata
- Download URL: django-except-catcher-1.0.1.tar.gz
- Upload date:
- Size: 32.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf5b3f22476a48639a4ae169683fbda39d6ca8e1db3cc0eda3cd6495010658d1 |
|
MD5 | bd03f822682ed90a0965dd379bff9bd0 |
|
BLAKE2b-256 | 87776dd9026457b98367fd0af4e4f459d1a57bd3026bf4b0e2b7d553d8e4b64f |