Browse Source

Remove a debug log

master
Neil Booth 8 years ago
parent
commit
0c2b4afbdc
  1. 2
      lib/jsonrpc.py

2
lib/jsonrpc.py

@ -147,7 +147,7 @@ class JSONRPC(asyncio.Protocol, LoggedClass):
def send_json(self, payload): def send_json(self, payload):
'''Send a JSON payload.''' '''Send a JSON payload.'''
if self.transport.is_closing(): if self.transport.is_closing():
self.logger.info('send_json: connection closing, not sending') # Confirmed this happens, sometimes a lot
return False return False
try: try:

Loading…
Cancel
Save