From 15e1acec17204605246aabdf689ac692650747fe Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 29 Jan 2013 00:48:23 +0400 Subject: [PATCH] reduce logs --- backends/bitcoind/blockchain_processor.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backends/bitcoind/blockchain_processor.py b/backends/bitcoind/blockchain_processor.py index 93177e1..7fe02fc 100644 --- a/backends/bitcoind/blockchain_processor.py +++ b/backends/bitcoind/blockchain_processor.py @@ -551,7 +551,7 @@ class BlockchainProcessor(Processor): address = params[1] if password == self.config.get('server', 'password'): self.watched_addresses.remove(address) - print_log('unsubscribed', address) + # print_log('unsubscribed', address) result = "ok" else: print_log('incorrect password') @@ -745,7 +745,7 @@ class BlockchainProcessor(Processor): def invalidate_cache(self, address): with self.cache_lock: if address in self.history_cache: - print_log("cache: invalidating", address) + # print_log("cache: invalidating", address) self.history_cache.pop(address) if address in self.watched_addresses: -- 1.7.1