sensible

A simple and sensible logging config


Keywords
logging, configuration, python
License
MIT
Install
pip install sensible==1.0

Documentation

A "Sensible" Logging Configuration

You simply do this:

>>> from sensible.loginit
import logger
>>> log = logger("MyApp")
>>> log.info("stuff")
2009-08-04 23:56:22,583 - MyApp - INFO - stuff
Environmental Variable

If you want to print log.debug messages, you simply set the environmental variable:

LOGGING_DEBUG = 1