You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
415 B
22 lines
415 B
version = 1
|
|
|
|
disable_existing_loggers = false
|
|
|
|
[formatters.custom]
|
|
format = "'%(asctime)s - %(module)s - %(levelname)s - %(message)s'"
|
|
|
|
[handlers.console]
|
|
class = "logging.StreamHandler"
|
|
level = "DEBUG"
|
|
formatter = "custom"
|
|
stream = "ext://sys.stdout"
|
|
|
|
[handlers.file]
|
|
class = "logging.FileHandler"
|
|
level = "DEBUG"
|
|
formatter = "custom"
|
|
filename = "on_hold.log"
|
|
|
|
[root]
|
|
level = "DEBUG"
|
|
handlers = ["console", "file"] |