print-logger

Print Logger Python print with strict structure


Keywords
PYTHON, PRINT, LOGGING
License
MIT
Install
pip install print-logger==1.0.3

Documentation

Print Logger

Python print with strict structure

Install

pip install print-logger

Usage

from print_logger import print_log, ERROR, INFO, WARNING

# info level
print_log('message info', INFO)
# error level
print_log({'message': 'error'}, ERROR)
# warning level
print_log('message warning', WARNING)
# custom level
print_log('message custom', 'CUSTOM')