From 2b5beb01e883662dcb7a4c49bd1a3600b2903275 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Thu, 5 Feb 2015 10:01:38 -0800 Subject: [PATCH] Reduce verbosity. --- libethereum/Client.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libethereum/Client.cpp b/libethereum/Client.cpp index f3a12e0f5..8a3fa99e3 100644 --- a/libethereum/Client.cpp +++ b/libethereum/Client.cpp @@ -232,7 +232,8 @@ void Client::uninstallWatch(unsigned _i) void Client::noteChanged(h256Set const& _filters) { Guard l(m_filterLock); - cnote << "noteChanged(" << _filters << ")"; + if (_filters.size()) + cnote << "noteChanged(" << _filters << ")"; // accrue all changes left in each filter into the watches. for (auto& i: m_watches) if (_filters.count(i.second.id))