Metadata-Version: 2.1
Name: bobtail-logger
Version: 0.0.1
Summary: Logging middleware for Bobtail
Home-page: https://github.com/joegasewicz/bobtail-logger
Author: Joe Gasewicz
Author-email: joegasewicz@gmail.com
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# Bobtail Logger
Logging middleware for Bobtail

### Install
```
pip install bobtail-logger
```

### Usage
```python
### Usage
```python
from bobttail_logger import BobtailLogger

app = Bobtail(routes=routes)
app.use(BobtailLogger())

```

Colors
```python
from bobtail_logger import BobtailLogger, Colors

b = BobtailLogger(colors={"color": Colors.RED})
# Errors will always be displayed in `Color.RED`
```
