Logging Improvements (#198)

* Log ZMQ SUB address at startup
* Log current thread number and block height
* fixup! Log current thread number and block height
This commit is contained in:
William Swanson
2025-11-14 09:59:02 -08:00
committed by Lee *!* Clagett
parent 0caec18f84
commit e08480cbc1
4 changed files with 17 additions and 6 deletions

View File

@@ -147,6 +147,8 @@ namespace lws { namespace rpc { namespace scanner
if (msg.users.empty())
return true;
MINFO("Client (" << self->remote_endpoint() << ") processed "
<< msg.blocks.size() << " block(s) against " << msg.users.size() << " account(s)");
server::store(self->parent_, std::move(msg.users), std::move(msg.blocks));
return true;
}