From: Ben Darnell Date: Sun, 22 Jan 2012 00:16:36 +0000 (-0800) Subject: Remove stray log line X-Git-Tag: v2.2.0~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc28966ef5053da6feebb72293ddf09ce98476f9;p=thirdparty%2Ftornado.git Remove stray log line --- diff --git a/tornado/websocket.py b/tornado/websocket.py index b5b742c8c..c4498cfea 100644 --- a/tornado/websocket.py +++ b/tornado/websocket.py @@ -86,7 +86,6 @@ class WebSocketHandler(tornado.web.RequestHandler): # The difference between version 8 and 13 is that in 8 the # client sends a "Sec-Websocket-Origin" header and in 13 it's # simply "Origin". - logging.info('starting websocket') if self.request.headers.get("Sec-WebSocket-Version") in ("7", "8", "13"): self.ws_connection = WebSocketProtocol13(self) self.ws_connection.accept_connection()