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
If you want to print log.debug messages, you simply set the environmental variable:
export LOGGING_DEBUG = 1