Metadata-Version: 1.1
Name: pyramid-logging
Version: 0.1
Summary: Advanced logger for pyramid
Home-page: https://github.com/LeResKP/pyramid_logging
Author: Aurélien Matouillot
Author-email: a.matouillot@gmail.com
License: MIT
Description: pyramid_logging
        ===============
        
        Advanced logger for pyramid which add data from the request.
        
        It's very easy to use::
        
            import pyramid_logging
            log = pyramid_logging.getLogger(__name__)
        
        
            def view(request):
                log.debug('Hello world', request=self.request)
        
        
        The output is the same as pyramid_exclog. Some data added:
        
            * the URL called
            * The query parameters
            * The environment variables
            * the authenticated user
        
Platform: UNKNOWN
Classifier: Framework :: Pyramid
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Logging
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
