Metadata-Version: 1.1
Name: logging-color-formatter
Version: 1.0.2
Summary: A colored logging formatter
Home-page: https://github.com/leplatrem/logging-color-formatter
Author: Mathieu Leplatre
Author-email: mathieu@leplat.re
License: Apache License (2.0)
Description: logging-color-formatter
        =======================
        
        .. image:: https://img.shields.io/pypi/v/logging-color-formatter.svg
            :target: https://pypi.python.org/pypi/logging-color-formatter
            :alt: Latest PyPI version
        
        .. image:: https://travis-ci.org/leplatrem/logging-color-formatter.png
           :target: https://travis-ci.org/leplatrem/logging-color-formatter
           :alt: Latest Travis CI build status
        
        A colored logging formatter.
        
        Installation
        ------------
        
        ::
        
            pip install logging-color-formatter
        
        
        Usage
        -----
        
        .. code-block:: ini
        
            [loggers]
            keys = root
        
            [handlers]
            keys = console
        
            [formatters]
            keys = generic
        
            [logger_root]
            level = DEBUG
            handlers = console
        
            [handler_console]
            class = StreamHandler
            args = (sys.stdout,)
            level = NOTSET
            formatter = generic
        
            [formatters]
            keys = color
        
            [formatter_color]
            class = logging_color_formatter.ColorFormatter
        
        
        Changes
        -------
        
        1.0.2
        '''''
        
        - Fix missing out of stacktraces on exceptions
        
        1.0.1
        '''''
        
        - Fix missing interpolation on strings using logger arguments
        
        
        Run tests
        ---------
        
        ::
        
            python setup.py test
        
        
        Licence
        -------
        
        * Apache License v2
        
Keywords: logging
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
