Combining less common logging features into a single library.
- Collapsing log lines
- Sticky log lines
- Opinionated defaults
- Handlers configured to do the right thing
- CLI vs. logfile awareness
$ python -m logmia
import logmia
logger = logmia.get_logger()
logger.debug('Attempting to connect to example.com')
logger.info('Connected to example.com') # replaces previous debug line and is sticky
$ make test