From 7e50cdc8568019d459973a84ef05672bc92146c6 Mon Sep 17 00:00:00 2001 From: Kevin Bates Date: Wed, 26 Jun 2019 15:22:36 -0700 Subject: [PATCH] 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. --- notebook/gateway/handlers.py | 1 - 1 file changed, 1 deletion(-) diff --git a/notebook/gateway/handlers.py b/notebook/gateway/handlers.py index 555b64958..400c8e086 100644 --- a/notebook/gateway/handlers.py +++ b/notebook/gateway/handlers.py @@ -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):