Logaroo is a tiny logging package for Python designed to stay out of your way:
- Simply import the
loggersingleton fromlogarooto get started - Log with standard methods like
log.debug(),log.info(), andlog.warning() - Set your severity level with
logger.level = ...orLOGAROO_LEVEL - Change the log mesage template with
logger.template = ...orLOGAROO_TEMPLATE - Add custom levels with
logger.add_level() - Interpolate log messages with
str.format(), f-strings, or t-strings - Get optional coloring of log messages with Rich, turn off with
NO_COLORorLOGAROO_NO_RICH