1 Star 8 Fork 3

月夜行梦 / ddns-aliyun

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
logging.json 1.46 KB
一键复制 编辑 原始数据 按行查看 历史
月夜行梦 提交于 2020-11-25 01:02 . fix bug
{
"version":1,
"disable_existing_loggers":false,
"formatters":{
"standard": {
"format": "%(asctime)s - %(threadName)s:%(thread)d - task_id:%(name)s - %(filename)s[line:%(lineno)d] - [%(levelname)s] %(message)s"
},
"simple": {
"format": "%(asctime)s - %(filename)s[line:%(lineno)d] - [%(levelname)s] %(message)s"
},
"id_simple_format": {
"format": "%(asctime)s - [%(levelname)s] %(message)s"
}
},
"handlers":{
"console":{
"class":"logging.StreamHandler",
"level":"DEBUG",
"formatter":"simple",
"stream":"ext://sys.stdout"
},
"info_file_handler":{
"class":"logging.handlers.RotatingFileHandler",
"level":"INFO",
"formatter":"id_simple_format",
"filename":"Logs/info.log",
"maxBytes": 10485760,
"backupCount":20,
"encoding":"utf-8"
},
"error_file_handler":{
"class":"logging.handlers.RotatingFileHandler",
"level":"ERROR",
"formatter":"simple",
"filename":"Logs/errors.log",
"maxBytes": 10485760,
"backupCount":20,
"encoding":"utf-8"
}
},
"loggers":{
"":{
"level": "DEBUG",
"handlers": ["console", "info_file_handler", "error_file_handler"],
"propagate": true
}
}
}
Python
1
https://gitee.com/tdg/ddns-aliyun.git
git@gitee.com:tdg/ddns-aliyun.git
tdg
ddns-aliyun
ddns-aliyun
master

搜索帮助