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))