Metadata-Version: 1.0
Name: Yamlog
Version: 0.9
Summary: Logging in YAML format
Home-page: http://github.com/kless/Yamlog
Author: Jonas Melian
Author-email: jonas@mailup.net
License: UNKNOWN
Description: Yamlog uses a rotating file that rollovers at 128 KB, it writes messages in YAML
        format since it's more easy to parse --using the international format for date
        and time--, and it also logs the higher-level messages to the standard error
        into single lines.
        
        To setup the logging::
        
        import yamlog
        yamlog.setup(filename)
        
        where `filename` is the file where is going to be logged; */tmp/python.log* by
        default.
        
        And to tear down it::
        
        yamlog.teardown()
        
        Then, in each module where is going to be used, there is to add::
        
        import yamlog
        _log = yamlog.logger(__name__)
        
        so it passes the module name where it's being run. Now, can be used the logging
        methods --*debug()*, *info()*, *warning()*, *error()*, *critical()*-- to
        indicate the importance of a logged message.
        
        Change history
        ==============
        
        v0.9, 2010-02-12
        ----------------
        * Initial release.
        
Keywords: log logging
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 2.6
Classifier: Topic :: System :: Logging
