Files
PINE/shared/logging.python.dev.json
Laura Glendenning d6aa00330d Add development updates.
Including:
1. Generated python documentat in docs/.
2. Starting a new python client in client/.
3. Moving testing data to test/.
4. The addition of Cypress UI tests and pytest tests in test/.
5. A number of bug fixes and improvements.
2020-07-30 11:59:05 -04:00

47 lines
1.1 KiB
JSON

{
"version": 1,
"formatters": {
"default": {
"format": "%(asctime)s [%(levelname)s] %(name)s: %(message)s",
"datefmt": "%Y-%m-%d %H:%M:%S"
},
"json": {
"class": "pythonjsonlogger.jsonlogger.JsonFormatter",
"format": "(asctime)",
"datefmt": "%Y-%m-%d %H:%M:%S"
}
},
"handlers": {
"console": {
"class": "logging.StreamHandler",
"formatter": "default",
"stream": "ext://sys.stdout"
},
"console_json": {
"class": "logging.StreamHandler",
"formatter": "json",
"stream": "ext://sys.stdout"
}
},
"root": {
"level": "INFO",
"handlers": [
"console"
]
},
"loggers": {
"pine.access": {
"propagate": false,
"level": "INFO",
"handlers": [
"console_json"
]
},
"pine": {},
"gunicorn": {
"handlers": [
"console"
]
}
}
}