Metadata-Version: 2.1
Name: taglogger
Version: 0.0.1
Summary: Simple logger that adds tags to log messages to make it easier to filter them
Home-page: https://github.com/joaompinto/taglogger
Author: João Pinto
Author-email: lamego.pinto@gmail.com
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE

# taglogger


A simple logger that adds tags to log messages to make it easier to filter them.

![License: MIT](https://img.shields.io/github/license/joaompinto/taglogger?style=for-the-badge&color=%23007ec6)
[![PyPi](https://img.shields.io/pypi/v/taglogger.svg?style=for-the-badge&color=%23007ec6)](https://pypi.python.org/pypi/taglogger)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg?style=for-the-badge)](https://github.com/ambv/black)

<img src="imgs\taglogger.png">


## Installation

```bash
pip install taglogger
```

## Usage

```python
# main.py
from taglogger import tlog

tlog("traffic", "There is a traffic jam")
```

```bash
$ DEBUG=traffic python main.py
[traffic] There is a traffic jam
```
