Remove verbose debug statement in gateway mode

I removed the mirroring 'Receiving' debug statement previously and
didn't realize there's a 'Sending' statement.  This change removes
that statement.

This should be part of the 6.0 release, just not signficant enough
to warrant include in rc1.
This commit is contained in:
Kevin Bates 2019-06-26 15:22:36 -07:00
parent a44a367c21
commit 7e50cdc856

View File

@ -87,7 +87,6 @@ class WebSocketChannelsHandler(WebSocketHandler, IPythonHandler):
def on_message(self, message):
"""Forward message to gateway web socket handler."""
self.log.debug("Sending message to gateway: {}".format(message))
self.gateway.on_message(message)
def write_message(self, message, binary=False):