Added files from the original repo

This commit is contained in:
2021-04-01 17:45:59 +02:00
commit bc68523d38
6 changed files with 1081 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
[loggers]
keys=root
[handlers]
keys=fileHandler, consoleHandler
[formatters]
keys=simpleFormatter
[logger_root]
level=DEBUG
handlers=fileHandler, consoleHandler
[handler_fileHandler]
class=FileHandler
formatter=simpleFormatter
args=("control.log",)
[handler_consoleHandler]
class=StreamHandler
formatter=simpleFormatter
args=(sys.stdout,)
[formatter_simpleFormatter]
format='%(asctime)s [%(levelname)s] %(threadName)-10s %(message)s'