#14973: AdminEmailHandler doesn't include report.message
----------------------------+-----------------------------------------------
Reporter: jamstooks | Owner: nobody
Status: new | Milestone: 1.3
Component: Core framework | Version: 1.3-alpha
Keywords: | Stage: Unreviewed
Has_patch: 0 |
----------------------------+-----------------------------------------------
Shouldn't the message from the report be included in the email?
{{{
# django/utils/log.py line 89
message = "%s\n\n%s" % (stack_trace, request_repr)
}}}
I wasn't sure what the intension here was for excluding the message, so I
didn't build a patch for that yet, but it could be something as simple as:
{{{
message = "%s\n\n%s\n\n%s" % (record.message, stack_trace, request_repr)
}}}
--
Ticket URL: <http://code.djangoproject.com/ticket/14973>
Django <http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en.