diff --git a/source/WorldServer/Web/HTTPSClientPool.cpp b/source/WorldServer/Web/HTTPSClientPool.cpp index 33347cd..987bd2f 100644 --- a/source/WorldServer/Web/HTTPSClientPool.cpp +++ b/source/WorldServer/Web/HTTPSClientPool.cpp @@ -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); }