mirror of
https://github.com/Hopiu/django.git
synced 2026-05-02 04:34:45 +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
|