Add verbosity to log twisted log

This commit is contained in:
Krukov Dima 2016-09-16 20:36:31 +00:00
parent c6270e7e4e
commit 0844061296
2 changed files with 6 additions and 2 deletions

View File

@ -153,4 +153,5 @@ class CommandLineInterface(object):
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,
).run()

View File

@ -26,6 +26,7 @@ class Server(object):
ping_timeout=30,
ws_protocols=None,
root_path="",
verbosity=None
):
self.channel_layer = channel_layer
self.host = host
@ -42,6 +43,7 @@ class Server(object):
self.websocket_timeout = websocket_timeout or getattr(channel_layer, "group_expiry", 86400)
self.ws_protocols = ws_protocols
self.root_path = root_path
self.verbosity = verbosity
def run(self):
self.factory = HTTPFactory(
@ -54,6 +56,7 @@ class Server(object):
ws_protocols=self.ws_protocols,
root_path=self.root_path,
)
if self.verbosity <= 1:
# Redirect the Twisted log to nowhere
globalLogBeginner.beginLoggingTo([lambda _: None], redirectStandardIO=False, discardBuffer=True)
# Listen on a socket