1
0

debug log for polling

This commit is contained in:
Emagi 2024-12-02 19:27:22 -05:00
parent 3883fc2ffa
commit 1a7061a6c0

View File

@ -718,6 +718,7 @@ void HTTPSClientPool::startPolling() {
for (const auto& clientPair : clients) {
auto server = clientPair.first.first;
auto port = clientPair.first.second;
LogWrite(PEERING__DEBUG, 5, "Peering", "%s: startPolling for %s:%u.", __FUNCTION__, server.c_str(), port);
std::async(std::launch::async, &HTTPSClientPool::pollPeerHealth, this, server, port);
}