mirror of https://github.com/django/django.git
22 lines
521 B
Python
22 lines
521 B
Python
import logging
|
|
|
|
from django.conf import settings
|
|
from django.core.mail.backends.base import BaseEmailBackend
|
|
from django.views.debug import ExceptionReporter
|
|
|
|
|
|
class MyHandler(logging.Handler):
|
|
def __init__(self):
|
|
logging.Handler.__init__(self)
|
|
self.config = settings.LOGGING
|
|
|
|
|
|
class MyEmailBackend(BaseEmailBackend):
|
|
def send_messages(self, email_messages):
|
|
pass
|
|
|
|
|
|
class CustomExceptionReporter(ExceptionReporter):
|
|
def get_traceback_text(self):
|
|
return "custom traceback text"
|