Use debug celery logging for development
This commit is contained in:
parent
b03f2fc902
commit
61827b955d
1 changed files with 6 additions and 0 deletions
|
|
@ -8,6 +8,12 @@ INSTALLED_APPS += ["debug_toolbar", "django_extensions"]
|
|||
|
||||
MIDDLEWARE += ["debug_toolbar.middleware.DebugToolbarMiddleware"]
|
||||
|
||||
LOGGING["loggers"].update(
|
||||
{
|
||||
"celery.task": {"handlers": ["console", "celery"], "level": "DEBUG"},
|
||||
}
|
||||
)
|
||||
|
||||
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
|
||||
|
||||
CACHES = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue