fix oidc logging

This commit is contained in:
matthewswspence 2025-01-30 16:31:50 -06:00
parent 5523d0b28f
commit 4cc6452c6a
No known key found for this signature in database
GPG key ID: FB458202A7852BA4

View file

@ -595,13 +595,13 @@ LOGGING = {
}, },
# OpenID Connect logger # OpenID Connect logger
"oic": { "oic": {
"handlers": ["console"], "handlers": django_handlers,
"level": "INFO", "level": "INFO",
"propagate": False, "propagate": False,
}, },
# Django wrapper for OpenID Connect # Django wrapper for OpenID Connect
"djangooidc": { "djangooidc": {
"handlers": ["console"], "handlers": django_handlers,
"level": "INFO", "level": "INFO",
"propagate": False, "propagate": False,
}, },
@ -615,7 +615,7 @@ LOGGING = {
# root logger catches anything, unless # root logger catches anything, unless
# defined by a more specific logger # defined by a more specific logger
"root": { "root": {
"handlers": ["console"], "handlers": django_handlers,
"level": "INFO", "level": "INFO",
}, },
} }