1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00

Refs #30752 -- Doc'd error reporting related optional request attributes.

This commit is contained in:
Carlton Gibson 2020-01-17 15:11:44 +01:00 committed by Mariusz Felisiak
parent bf3e8227a9
commit 56071826bb

View File

@ -234,6 +234,16 @@ application.
``urlconf`` can be set to ``None`` to revert any changes made by previous
middleware and return to using the :setting:`ROOT_URLCONF`.
.. attribute:: HttpRequest.exception_reporter_filter
This will be used instead of :setting:`DEFAULT_EXCEPTION_REPORTER_FILTER`
for the current request. See :ref:`custom-error-reports` for details.
.. attribute:: HttpRequest.exception_reporter_class
This will be used instead of :setting:`DEFAULT_EXCEPTION_REPORTER` for the
current request. See :ref:`custom-error-reports` for details.
Attributes set by middleware
----------------------------