forked from LBRYCommunity/lbry-sdk
less verbose ClientProtocol log
fix https://github.com/lbryio/lbry/issues/917
This commit is contained in:
parent
0a19dd938a
commit
8c79421790
1 changed files with 2 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue