Metadata-Version: 2.1
Name: csmlog
Version: 0.10
Summary: UNKNOWN
Home-page: http://github.com/csm10495/csmlog
Author: csm10495
Author-email: csm10495@gmail.com
License: MIT License
Description: # csmlog
        
        [![Build Status](https://csm10495.visualstudio.com/csmlog/_apis/build/status/csmlog-CI?branchName=master)](https://csm10495.visualstudio.com/csmlog/_build/latest?definitionId=4?branchName=master)
        
        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 :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
