kamilchm / nicelog

Formatters to nicely display colorful logging output on the console.

Home Page:https://pypi.python.org/pypi/nicelog/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nice Log

https://travis-ci.org/rshk/nicelog.svg?branch=master https://coveralls.io/repos/rshk/nicelog/badge.png Latest PyPI version Number of PyPI downloads

Provide formatters to nicely display colorful logging output on the console.

Fork this project on GitHub

Right now, it contains only one formatter, coloring log lines depending on the log level and adding nice line prefixes containing logger name, but future plans are to add more formatters and allow better ways to customize them.

Example usage

from nicelog.formatters import ColorLineFormatter
import logging
import sys

logger = logging.getLogger('foo')
logger.setLevel(logging.DEBUG)

handler = logging.StreamHandler(sys.stderr)
handler.setFormatter(ColorLineFormatter())
handler.setLevel(logging.DEBUG)

logger.addHandler(handler)

logger.debug('Debug message')
logger.info('Info message')
logger.warning('Warning message')
logger.error('Error message')
logger.critical('Critical message')

Example output

Here it is, in all its glory:

Screenshot

If you want to see what it looks like in 256color mode, with all the fields enabled:

Screenshot

Powerline font support

You can set the HAS_POWERLINE_FONT environment variable to a non-null value in order to tell the formatter to use powerline-style symbols (specifically, the "arrow" thing).

About

Formatters to nicely display colorful logging output on the console.

https://pypi.python.org/pypi/nicelog/


Languages

Language:Python 100.0%