Browse Source

Reduce verbosity.

cl-refactor
Gav Wood 10 years ago
parent
commit
2b5beb01e8
  1. 3
      libethereum/Client.cpp

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

Loading…
Cancel
Save