mirror of
https://github.com/django/django.git
synced 2025-06-05 11:39:13 +00:00
Fixed #25204 -- Added missing space in runserver logging.
This commit is contained in:
parent
f93e7f5674
commit
1a76257b1b
@ -104,7 +104,7 @@ class WSGIRequestHandler(simple_server.WSGIRequestHandler, object):
|
|||||||
|
|
||||||
def log_message(self, format, *args):
|
def log_message(self, format, *args):
|
||||||
|
|
||||||
msg = "[%s]" % self.log_date_time_string()
|
msg = "[%s] " % self.log_date_time_string()
|
||||||
try:
|
try:
|
||||||
msg += "%s\n" % (format % args)
|
msg += "%s\n" % (format % args)
|
||||||
except UnicodeDecodeError:
|
except UnicodeDecodeError:
|
||||||
|
@ -13,6 +13,16 @@ class Stub(object):
|
|||||||
|
|
||||||
|
|
||||||
class WSGIRequestHandlerTestCase(SimpleTestCase):
|
class WSGIRequestHandlerTestCase(SimpleTestCase):
|
||||||
|
|
||||||
|
def test_log_message(self):
|
||||||
|
request = WSGIRequest(RequestFactory().get('/').environ)
|
||||||
|
request.makefile = lambda *args, **kwargs: BytesIO()
|
||||||
|
handler = WSGIRequestHandler(request, '192.168.0.2', None)
|
||||||
|
|
||||||
|
with captured_stderr() as stderr:
|
||||||
|
handler.log_message('GET %s %s', 'A', 'B')
|
||||||
|
self.assertIn('] GET A B', stderr.getvalue())
|
||||||
|
|
||||||
def test_https(self):
|
def test_https(self):
|
||||||
request = WSGIRequest(RequestFactory().get('/').environ)
|
request = WSGIRequest(RequestFactory().get('/').environ)
|
||||||
request.makefile = lambda *args, **kwargs: BytesIO()
|
request.makefile = lambda *args, **kwargs: BytesIO()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user