Metadata-Version: 2.1
Name: system-logger-tool
Version: 0.0.1
Summary: Toolchain used to  recording log events at different levels .
Author-email: Marius Crisan <mariuscrsn+pypi@gmail.com>, Pablo Pastor <pastorpflores+pypi@gmail.com>, Javier Sanz <javiersanzmoline@gmail.com>, Roberto Aldea <r.aldea.csic+pypi@gmail.com>, Luis Roche <luis.roche@hotmail.com>
Project-URL: Homepage, https://github.com/WattRex/System-Tools
Project-URL: Bug Reports, https://github.com/WattRex/System-Tools/issues
Project-URL: Bug Tracker, https://github.com/WattRex/Battery-Cycler-Drivers/issues
Project-URL: Source, https://github.com/WattRex/System-Tools/code/sys_conf
Project-URL: Funding, https://donate.pypi.org
Keywords: yaml,configuration,logging,screenshot
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Software Development :: Embedded Systems
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# System logger module
Module used for system logger tool.  It will record log events and write them out 
in a file with different information such as the file where the log is and the line.
The purpose of this module is to have a logger in common for all the files your app may need.
There are different log levels entries and the minimum log level can be configured 
in a log_config.yaml
This file should be located in the folder where the main file is going to be launched.
There is a template for the log_config.yaml
The different log level entries are from less important to most:
DEBUG, INFO, WARNING, ERROR, CRITICAL

```

--- #YAML FILE START
__main__: "DEBUG" 

##### sys #####
sys_shd: "CRITICAL"
sys_conf: "WARNING"
sys_log: "INFO"

file_handlers: {
  # "log_can" : [ drv.drv_can, drv.drv_epc ],
}

```
