Metadata-Version: 1.0
Name: mozlog
Version: 1.1
Summary: Robust log handling specialized for logging in the Mozilla universe
Home-page: http://github.com/ahal/mozbase
Author: Andrew Halberstadt, Mozilla
Author-email: halbersa@gmail.com
License: MPL 1.1/GPL 2.0/LGPL 2.1
Description: [Mozlog](https://github.com/mozilla/mozbase/tree/master/mozlog)
        is a python package intended to simplify and standardize logs in the Mozilla universe.
        It wraps around python's [logging](http://docs.python.org/library/logging.html)
        module and adds some additional functionality.
        
        # Usage
        
        Import mozlog instead of [logging](http://docs.python.org/library/logging.html)
        (all functionality in the logging module is also available from the mozlog module).
        To get a logger, call mozlog.getLogger passing in a name and the path to a log file.
        If no log file is specified, the logger will log to stdout.
        
        import mozlog
        logger = mozlog.getLogger('LOG_NAME', 'log_file_path')
        logger.setLevel(mozlog.DEBUG)
        logger.info('foo')
        logger.testPass('bar')
        mozlog.shutdown()
        
Platform: Any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
