mirror of
https://github.com/JHUAPL/PINE.git
synced 2026-01-10 23:18:04 -05:00
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.
47 lines
1.1 KiB
JSON
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"
|
|
]
|
|
}
|
|
}
|
|
} |