A colorful and less settings logger, based on the built-in package
logging.
Contain the following features with the minimum settings.
- stream logger(Colorful Stream)
- file logger(strip color tags)
- remote logger(In progress)
- Install
pip install log_stacker- Import module in your entry point at the top
entry point: startup python file, such as
main.pyrun.pystart_api.pyetc.
- Basic setup
"""
start_api.py
"""
from log_stacker import LogStacker
LogStacker.logging(__file__)or
- Advance setup
"""
start_api.py
"""
from log_stacker import LogStacker
LogStacker.logging(
entry_point='path/to/your/log',
stream_level=LogStacker.WARNING,
file_level=LogStacker.INFO,
remote_level=None
)You can start logging in anywhere of your project!
Note: If you got an initialized warning, please make sure you initial LogStacker correctly at the begging of the file your are running.
"""
test.py which is called by start_api.py
"""
from log_stacker import LogStacker
try:
1/0
except Exception as e:
LogStacker.critical(e)
LogStacker.error(e)
LogStacker.warning(e, msg='It is a warning!')
LogStacker.info('I wanna print something here!')
LogStacker.debug()| # | date | version |
|---|---|---|
| 0 | 2021/02/07 | v0.0.1 |
- Beta version
If you like my work, please consider buying me a coffee or PayPal
Thanks for your support! Cheers! 🎉
