Remove logging config from global.json

This commit is contained in:
Tim Van Baak 2020-04-23 17:47:34 -07:00
parent fdff9e5374
commit 28c1ef2dd5
1 changed files with 0 additions and 44 deletions

View File

@ -11,49 +11,5 @@
"tls": null,
"username": null,
"password": null
},
"logging": {
"version": 1,
"formatters": {
"fmt_basic": {
"format": "[{levelname}] {message}",
"style": "{"
},
"fmt_verbose": {
"format": "[{asctime}] [{levelname}:{filename}:{lineno}] {message}",
"style": "{"
}
},
"handlers": {
"cli_basic": {
"class": "logging.StreamHandler",
"formatter": "fmt_basic",
"level": "INFO"
},
"cli_verbose": {
"class": "logging.StreamHandler",
"formatter": "fmt_verbose",
"level": "DEBUG"
},
"file": {
"class": "logging.handlers.RotatingFileHandler",
"formatter": "fmt_verbose",
"level": "DEBUG",
"filename": "./amanuensis.log",
"delay": true,
"encoding": "utf8",
"maxBytes": 1000000,
"backupCount": 10
}
},
"loggers": {
"amanuensis": {
"level": "DEBUG",
"handlers": [
"cli_basic"
]
}
},
"disable_existing_loggers": false
}
}