From f3c1587d515ff640c692e2380eb0d66597be570d Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Sat, 27 Jan 2018 17:02:03 -0600 Subject: [PATCH] failed to get blocks message --- onionr/communicator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onionr/communicator.py b/onionr/communicator.py index 080c3108..649822f2 100755 --- a/onionr/communicator.py +++ b/onionr/communicator.py @@ -117,7 +117,7 @@ class OnionrCommunicate: try: r = requests.get(url, headers=headers, proxies=proxies) except requests.exceptions.RequestException: - logger.warn("Failed to get blocks") + logger.warn(action + " failed with peer " + peer) return False return r.text