mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07:00
18 lines
426 B
JSON
18 lines
426 B
JSON
{
|
|
"version": 1,
|
|
"disable_existing_loggers": true,
|
|
"formatters": { "rich": { "show_path": false, "omit_repeated_times": false } },
|
|
"handlers": {
|
|
"console": {
|
|
"class": "app.config.CustomRichHandler",
|
|
"formatter": "rich",
|
|
"level": "INFO"
|
|
}
|
|
},
|
|
"loggers": {
|
|
"gunicorn.access": { "propagate": true },
|
|
"gunicorn.error": { "propagate": true }
|
|
},
|
|
"root": { "handlers": ["console"] }
|
|
}
|