ytlog

ytlog - log module for humans.


Keywords
logging
License
Other
Install
pip install ytlog==0.6

Documentation

ytlog - log module for humans

We use logging everyday, bug it's easy to forget how to use buildin logging module of Python, because the configuration looks complicated.

So I copy log.py module from Tornado(github)

pip install ytlog

How to use

from ytlog import get_logger

log = get_logger({"name": "app"})
log.info("Mission starts.")

Then we will see logging in console and log file under directory /data/logs/

screenshot

So easy!

If you want to change log file path, just add arg "dir"

e.g.

log = get_logger({"name": "app", "dir": "./"})