mirror of
https://github.com/immich-app/immich.git
synced 2025-12-28 17:24:56 +03:00
fix(ml): error logging (#6646)
* fix ml error logging * exclude certain libraries from traceback
This commit is contained in:
@@ -1,16 +1,15 @@
|
||||
{
|
||||
"version": 1,
|
||||
"disable_existing_loggers": true,
|
||||
"formatters": { "rich": { "show_path": false, "omit_repeated_times": false } },
|
||||
"disable_existing_loggers": false,
|
||||
"handlers": {
|
||||
"console": {
|
||||
"class": "app.config.CustomRichHandler",
|
||||
"formatter": "rich"
|
||||
"class": "app.config.CustomRichHandler"
|
||||
}
|
||||
},
|
||||
"loggers": {
|
||||
"gunicorn.access": { "propagate": true },
|
||||
"gunicorn.error": { "propagate": true }
|
||||
"gunicorn.error": {
|
||||
"handlers": ["console"]
|
||||
}
|
||||
},
|
||||
"root": { "handlers": ["console"] }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user