A simple tester of Django's loggers' configuration.
The easiest way to get this is from PyPI:
pip install django_loggers_test
Run your project's shell (python manage.py shell
), and then
>>> from django_loggers_test import loggers_test
>>> loggers_test()
This will log messages to the console, using all available formatters and levels. There isn't really much more to it, apart from minor configurability. For details, run
>>> help(loggers_test)