Metadata-Version: 2.1
Name: django_loggers_test
Version: 1.0.0
Summary: A simple tester of Django's loggers' configuration
Project-URL: Homepage, https://github.com/vsego/django_loggers_test
Project-URL: Bug Tracker, https://github.com/vsego/django_loggers_test/issues
Author-email: Vedran Sego <vsego@vsego.org>
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.5
Description-Content-Type: text/markdown

# Django Loggers Test

A simple tester of Django's loggers' configuration.

## Content

1. [Installation](#installation)
2. [Usage](#usage)

## Installation

The easiest way to get this is from PyPI:

```bash
pip install django_loggers_test
```

## Usage

Run your project's shell (`python manage.py shell`), and then

```pycon
>>> 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

```pycon
>>> help(loggers_test)
```
