A django installable app that can be used as log handler to store messages with a database record and optional file storage.
Add this package as requirement to your django app requirements.txt
# requirements.txt
log_storage
Add this app to your INSTALLED_APPS in your settings.py
# settings.py
INSTALLED_APPS = (
'log_storage',
)
Clone the project
git clone git@github.com:Virtualstock/log_storage.git
Install it
make setup
make test
Make sure you bump the package version on setup.py.
make release
Licensed under MIT license
. View license.