Metadata-Version: 2.1
Name: mondrian
Version: 0.8.0
Summary: Mondrian helps you to configure and use python's logging module once and for ever.
Home-page: https://python-mondrian.github.io/
Author: Romain Dorgueil
Author-email: romain@dorgueil.net
License: Apache License, Version 2.0
Download-URL: https://github.com/python-mondrian/mondrian/archive/0.8.0.tar.gz
Description: mondrian
        ========
        
        .. image:: https://app.fossa.io/api/projects/git%2Bgithub.com%2Fpython-mondrian%2Fmondrian.svg?type=shield
            :target: https://app.fossa.io/projects/git%2Bgithub.com%2Fpython-mondrian%2Fmondrian?ref=badge_shield
            :alt: License Status
        
        Mondrian helps you paint your standard python logger.
        
        .. image:: https://raw.githubusercontent.com/hartym/mondrian/master/demo.png
          :alt: Mondrian in action
          :width: 100%
          :align: center
        
        Enabling mondrian is simple and straightforward:
        
        .. code-block:: python
        
            import logging
            import mondrian
        
            logger = logging.getLogger()
        
            if __name__ == '__main__':
                mondrian.setup(excepthook=True)
                logger.setLevel(logging.INFO)
        
                logger.info('Hello, world.')
        
        
        License
        =======
        
        .. image:: https://app.fossa.io/api/projects/git%2Bgithub.com%2Fpython-mondrian%2Fmondrian.svg?type=large
            :target: https://app.fossa.io/projects/git%2Bgithub.com%2Fpython-mondrian%2Fmondrian?ref=badge_large
            :alt: License Status
        
        
Platform: UNKNOWN
Provides-Extra: dev
