diff options
| author | Adam Johnson <me@adamj.eu> | 2022-01-12 12:04:14 +0000 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-01-12 20:23:42 +0100 |
| commit | 90cf96326432df56a1cf981df215b83f4e993bfd (patch) | |
| tree | 8c945fee178c3c183e4e04dc6a0bf94fde05b389 /docs | |
| parent | d05ab13c56849ed09d02c1f188b7f47f0c090a2a (diff) | |
Changed django.utils.log.log_response() to take exception instance.
There's little point retrieving a fresh reference to the exception in
the legacy tuple format, when it's all available via the exception
instance we already have.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/4.1.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/4.1.txt b/docs/releases/4.1.txt index e3bc02f226..3b36e7ea54 100644 --- a/docs/releases/4.1.txt +++ b/docs/releases/4.1.txt @@ -400,6 +400,9 @@ Miscellaneous :meth:`~.SimpleTestCase.assertFormsetError` is deprecated. Use ``errors=[]`` instead. +* The ``exc_info`` argument of the undocumented + ``django.utils.log.log_response()`` function is replaced by ``exception``. + Features removed in 4.1 ======================= |
