From 7a2f40a38255cd6e9bc0566c4f836da54d6e5e59 Mon Sep 17 00:00:00 2001 From: Abhimanyu Saharan Date: Sat, 9 Apr 2022 05:24:07 +0530 Subject: [PATCH] Disabled log printing --- daphne/cli.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/daphne/cli.py b/daphne/cli.py index 2e83a5c..8c95dc2 100755 --- a/daphne/cli.py +++ b/daphne/cli.py @@ -274,9 +274,9 @@ class CommandLineInterface: websocket_connect_timeout=args.websocket_connect_timeout, websocket_handshake_timeout=args.websocket_connect_timeout, application_close_timeout=args.application_close_timeout, - action_logger=AccessLogGenerator(access_log_stream) - if access_log_stream - else None, + # action_logger=AccessLogGenerator(access_log_stream) + # if access_log_stream + # else None, ws_protocols=args.ws_protocols, root_path=args.root_path, verbosity=args.verbosity,