mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Fixed #26504 -- Avoided logging "Not Found" warnings if a middleware handles the 404.
For example, this avoids a warning in the case of a request that's redirected to a language-prefixed URL by LocaleMiddleware.
This commit is contained in:
parent
5e00b14403
commit
40b69607c7
2 changed files with 11 additions and 4 deletions
|
@ -133,6 +133,11 @@ class HandlerLoggingTests(SetupDefaultLoggingMixin, LoggingCaptureMixin, SimpleT
|
|||
)
|
||||
class I18nLoggingTests(SetupDefaultLoggingMixin, LoggingCaptureMixin, SimpleTestCase):
|
||||
|
||||
def test_i18n_page_found_no_warning(self):
|
||||
self.client.get('/exists/')
|
||||
self.client.get('/en/exists/')
|
||||
self.assertEqual(self.logger_output.getvalue(), '')
|
||||
|
||||
def test_i18n_page_not_found_warning(self):
|
||||
self.client.get('/this_does_not/')
|
||||
self.client.get('/en/nor_this/')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue