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