Metadata-Version: 2.1
Name: rlogging
Version: 1.0.7
Summary: 
License: MIT
Author: irocshers
Author-email: develop.iam@rocshers.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Project-URL: changelog, https://gitlab.com/rocshers/python/rlogging/-/releases
Project-URL: documentation, https://gitlab.com/rocshers/python/rlogging/-/blob/release/readme.md
Project-URL: homepage, https://gitlab.com/rocshers/python/rlogging
Project-URL: issues, https://gitlab.com/rocshers/python/rlogging/-/issues
Project-URL: repository, https://gitlab.com/rocshers/python/rlogging
Project-URL: source, https://gitlab.com/rocshers/python/rlogging.git
Description-Content-Type: text/markdown

# rlogging

Specific logging settings for a python application

## Usage

```
pip install rlogging
```

### Python

```bash

```

### Django

```bash
# settings.py

INSTALLED_APPS = [
    ...
    'rlogging.integration.django',
    ...
]

MIDDLEWARE = [
    ...
    'rlogging.integration.django.middleware.LoggingMiddleware',
    ...
]

LOGGING = generate_logging_dict(LOGS_DIR, MIN_LOGGING_LEVEL)
```

### FastAPI

```bash

```

### aiogram

```bash

```


