Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

23 řádky
457 B

from logging import DEBUG
dictLogConfig = {
"version": 1,
"formatters": {
"form_1": {
"format":
'%(asctime)s %(levelname)s: %(message)s'
}
},
"handlers": {
"console": {
"class": "logging.StreamHandler",
"formatter": "form_1",
"level": DEBUG
}
},
"root": {
"handlers": ['console'],
"level": DEBUG
}
}