mirror of https://github.com/zulip/zulip.git
Disable tornado request logging in favor of our Django logging.
(imported from commit 2144b2ac1cdb6062bb32fca4cc69ea3f4570cf69)
This commit is contained in:
parent
4df6736225
commit
ade7146cd9
|
@ -123,7 +123,9 @@ class Command(BaseCommand):
|
|||
(r"/notify_new_message", AsyncDjangoHandler),
|
||||
(r"/notify_pointer_update", AsyncDjangoHandler),
|
||||
|
||||
], debug=django.conf.settings.DEBUG)
|
||||
], debug=django.conf.settings.DEBUG,
|
||||
# Disable Tornado's own request logging, since we have our own
|
||||
log_function=lambda x: None)
|
||||
|
||||
# start tornado web server in single-threaded mode
|
||||
http_server = httpserver.HTTPServer(application,
|
||||
|
|
Loading…
Reference in New Issue