Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/trisongz/pylogz

Super basic logger used in personal projects.
https://github.com/trisongz/pylogz

Last synced: about 2 months ago
JSON representation

Super basic logger used in personal projects.

Awesome Lists containing this project

README

        

# pylogz
Super basic logger used in personal projects.

---

Why should you use this? You probably shouldn't.

---

## Quickstart

```bash
pip install --upgrade pylogz
```

## Usage

```python
from logz import get_logger

logger = get_logger(name='libname', log_level='info', *args, **kwargs)
logger.info('...')

### Multi lib usage, threadsafe-ish

from logz import get_cls_logger
get_logger = get_cls_logger(name='libname_1', log_level='info', *args, **kwargs)
get_logger2 = get_cls_logger(name='libname_2', log_level='info', *args, **kwargs)

# Now you can call the get_logger function from any submodule.
logger = get_logger()
logger.info('hi')
"""
2021-12-03 03:36:26Z [libname_1] . hi
"""

logger2 = get_logger2()
logger2.info('hi')
"""
2021-12-03 03:36:26Z [libname_2] . hi
"""
```