mirror of
https://github.com/django/django.git
synced 2025-11-17 02:24:22 +00:00
7 lines
164 B
Python
7 lines
164 B
Python
import logging
|
|
|
|
from django.conf import settings
|
|
|
|
class MyHandler(logging.Handler):
|
|
def __init__(self, *args, **kwargs):
|
|
self.config = settings.LOGGING
|