Remove extra log line in download (#894)

This commit is contained in:
Jonathan Zernik 2021-06-02 00:55:56 -07:00 committed by GitHub
parent ad36244587
commit 1beebe2dc8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -102,9 +102,6 @@ class PeerConnection:
def _download_squeak(self, squeak_hash: bytes, criteria: DownloadCriteria):
"""Downloads a single squeak and the corresponding offer. """
logger.info("Downloading squeak {} from peer with address: {}".format(
squeak_hash.hex(), self.peer_address
))
saved_squeak = self.squeak_controller.get_squeak(squeak_hash)
if not saved_squeak:
self._download_squeak_object(squeak_hash, criteria)