Just another logger
Project description
pylogz
Super basic logger used in personal projects.
Why should you use this? You probably shouldn't.
Quickstart
pip install --upgrade pylogz
Usage
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] <stdin>.<module> hi
"""
logger2 = get_logger2()
logger2.info('hi')
"""
2021-12-03 03:36:26Z [libname_2] <stdin>.<module> hi
"""
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pylogz-0.0.4.tar.gz
(4.6 kB
view hashes)
Built Distribution
pylogz-0.0.4-py3-none-any.whl
(5.0 kB
view hashes)