From 71f55f0c919ca509645b34726fbc16ff52645979 Mon Sep 17 00:00:00 2001 From: Richard Kiss Date: Sun, 14 May 2017 14:13:34 -0700 Subject: [PATCH] Reduce noise. --- magneticod/magneticod/bittorrent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magneticod/magneticod/bittorrent.py b/magneticod/magneticod/bittorrent.py index dce6336..7a9a60a 100644 --- a/magneticod/magneticod/bittorrent.py +++ b/magneticod/magneticod/bittorrent.py @@ -81,7 +81,7 @@ class DisposablePeer: message = await self._reader.readexactly(length) self.__on_message(message) except Exception as ex: - logging.info("closing %s to %s", self.__info_hash.hex(), self.__peer_addr) + logging.debug("closing %s to %s", self.__info_hash.hex(), self.__peer_addr) if not self._metadata_future.done(): self._metadata_future.set_result(None) if self._writer: