Metadata-Version: 2.1
Name: gadlogging
Version: 0.0.1
Summary: A production-ready logging configuration module for Python.
Home-page: https://github.com/AlexDemure/gadlogging
Author: Alexander Grishchenko
Author-email: alexanderdemure@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: gadutils

<p align="center">
  <a href="https://github.com/AlexDemure/gadlogging">
    <a href="https://ibb.co/9m5Bwnm9"><img src="https://i.ibb.co/vCnfs1Cx/logo.png" alt="logo" border="0"></a>
  </a>
</p>

<p align="center">
  A production-ready logging configuration module for Python.
</p>

---

### Installation

```
pip install gadlogging
```

### Usage

```python
import json
import sys
import logging
from gadlogging import config, Logger

config.setup(Logger("root", logging.INFO, json, sys.stdout))

logger = logging.getLogger()
```
