„README.md“ ändern

This commit is contained in:
Kim Oliver Drechsel 2021-08-06 13:27:36 +02:00
parent 1b4ec53096
commit 5977176016

View File

@ -1,12 +1,26 @@
# logger
Simple logger function for other scripts
Simple logger function with colored Loglevel for other scripts
## Usage example
```python
try:
from loghandler import logger
except:
# if loghandler.py is located in subdirectory "lib"
from lib.loghandler import logger
from loghandler import logger
def main():
logger.debug("This is a Debug Message")
logger.info("This is a Info Message")
logger.warning("This is a Warning Message")
logger.error("This is a Error Message")
logger.critical("This is a Critical Message")
main()
```
```
[Fri, 06 Aug 2021 13:20:41] INFO [test.py.main:6] This is a Info Message
[Fri, 06 Aug 2021 13:20:41] WARNING [test.py.main:7] This is a Warning Message
[Fri, 06 Aug 2021 13:20:41] ERROR [test.py.main:8] This is a Error Message
[Fri, 06 Aug 2021 13:20:41] CRITICAL [test.py.main:9] This is a Critical Message
```