less verbose ClientProtocol log

fix https://github.com/lbryio/lbry/issues/917
This commit is contained in:
Jack Robison 2017-10-11 13:47:57 -04:00
parent 0a19dd938a
commit 8c79421790
No known key found for this signature in database
GPG key ID: 284699E7404E3CFF

View file

@ -140,9 +140,8 @@ class ClientProtocol(Protocol, TimeoutMixin):
self._send_request_message(request_msg)
else:
# The connection manager has indicated that this connection should be terminated
log.info(
"Closing the connection to %s due to having no further requests to send",
self.peer)
log.debug("Closing the connection to %s due to having no further requests to send",
self.peer)
self.peer.report_success()
self.transport.loseConnection()
d = self._connection_manager.get_next_request(self.peer, self)