Skip to content

Commit

Permalink
Remove verbose debug statement in gateway mode
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
kevin-bates committed Sep 23, 2019
1 parent f37c56b commit cf4ab59
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion jupyter_server/gateway/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ def open(self, kernel_id, *args, **kwargs):

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):
Expand Down

0 comments on commit cf4ab59

Please sign in to comment.