On 3/27/06, Ned Batchelder <[EMAIL PROTECTED]> wrote:
> I'd like to add some custom annotations on the traceback emails that get
> sent when an exception occurs and DEBUG = False.  For example, we are
> using our own user representation, and would like to include the user
> identity in the traceback.
>
> I can hack into the code that generates these emails, but I'd rather do
> it as a hook of some sort.  Has this been done before?  Should I create
> a new kind of hook (ERROR_ANNOTATER) to go alonside middleware and
> context processors?  Have I overlooked a simple way to accomplish this
> already?

Would the process_exception() middleware hook work for you?

http://www.djangoproject.com/documentation/middleware/#process-exception

It doesn't override the sending of the error e-mail, but you could do
a separate logging of the user information, I guess. Alternatively, we
might be able to move the standard error e-mailing bit into a
middleware of its own, so it can be overridden. If neither of those
solutions work, we could add a specific hook for this, too. Let us
know what you think!

Adrian

--
Adrian Holovaty
holovaty.com | djangoproject.com

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to