Metadata-Version: 2.1
Name: csmlog
Version: 0.2a0
Summary: UNKNOWN
Home-page: http://github.com/csm10495/csmlog
Author: csm10495
Author-email: csm10495@gmail.com
License: MIT License
Description: # csmlog
        
        Package to setup a python logger the way I like to use it.
        
        - By default logs to files per logger and one for the overall project
        - So a master logger with sub loggers per file (obtained via getLogger())
        
        ## Usage
        
        ```
        from csmlog import setup, getLogger
        setup("appName") # call setup once per application before obtaining any loggers(not once per file)
        logger = getLogger(__file__)
        
        # logger is a Python logger... feel free to use it.
        # You should see logs in APPDATA on Windows and /var/log on Linux
        ```
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Requires-Python: >=2.7
Description-Content-Type: text/markdown
