logbind

logbind


License
Apache-2.0
Install
pip install logbind==2017.11.4

Documentation

https://travis-ci.org/cjrh/logbind.svg?branch=master https://coveralls.io/repos/github/cjrh/logbind/badge.svg?branch=master

logbind

Easily bind new fields into your logger instances.

# Original logger
logger = logging.getLogger('a')
logger.info('Hello')

logger = logbind.bind(logger, id=12345)
logger.info('Hello')  # <- This logrecord has an extra field "id"

logger = logbind.bind(logger, abc=67890)
logger.info('Hello')  # <- logrecord has two extra fields: "id" and "abc"

This feature will be most useful with a structured logging formatter, such as JSON. You could try logjson for example.