Minimalistic wrapper for Python logging.
Project description
Unix: Windows: Metrics: Usage:
Overview
Every project should utilize logging, but sometimes the required boilerplate is too much. Instead of including this:
import logging
logging.basicConfig(
level=logging.INFO,
format="%(levelname)s: %(name)s: %(message)s",
)
log = logging.getLogger(__name__)
def greet(name):
log.info("Hello, %s!", name)
with this package you can simply:
import log
def greet(name):
log.info("Hello, %s!", name)
It will produce the exact same standard library logging records behind the scenes.
Installation
$ pip install minilog
Revision History
0.2.1 (2018/03/04)
Removed the Python version check on installation.
0.2 (2018/03/03)
Added method to force logging format: log.init(format="...")
Added method to silenced named loggers: log.silence('requests', allow_error=True)
Added convenience aliases: log.d, log.i, log.w, log.e
0.1 (2018/03/03)
Initial release.
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
minilog-0.2.1.tar.gz
(6.8 kB
view hashes)