Metadata-Version: 1.1
Name: python_log_indenter
Version: 0.9
Summary: A python LoggerAdapter class that provides automatic indenting for logging.
Home-page: http://python-log-indenter.readthedocs.org/en/latest/
Author: Dan Strohl
Author-email: dan@wjcg.net
License: GPLv2
Description: Python Log Indenter Helper Class
        ================================
        
        A python helper class that provides automatic indenting for logging.
        
        * Documentation: http://python-log-indenter.readthedocs.org/en/latest/
        * Source code at: https://github.com/dstrohl/Python_log_indenter
        
        This will allow you to turn logs that would normally look like this::
        
            root    DEBUG   Loading system
            root    DEBUG   Checking for the right record
            root    DEBUG   Checking record 1
            root    DEBUG   Checking name
            root    DEBUG   Not the right record
            root    DEBUG   Checking record 2
            root    DEBUG   checking name
            root    DEBUG   Name checks, checking phone number
            root    DEBUG   Phone number checks, VALID record!
            root    DEBUG   Returning record 2
        
        Into something like this::
        
            root    DEBUG   Loading system
            root    DEBUG       Checking for the right record
            root    DEBUG           Checking record 1
            root    DEBUG               Checking name
            root    DEBUG                   Not the right record
            root    DEBUG           Checking record 2
            root    DEBUG               checking name
            root    DEBUG                   Name checks, checking phone number
            root    DEBUG               Phone number checks, VALID record!
            root    DEBUG           Returning record 2
        
        
        
        .. image:: https://travis-ci.org/dstrohl/Python_log_indenter.svg?branch=master
            :target: https://travis-ci.org/dstrohl/Python_log_indenter
Keywords: log LogAdapter indent logger logging extension plugin helper Logger readable
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: System :: Logging
