From 1a7061a6c048a0155911385dde3a239b822d71cb Mon Sep 17 00:00:00 2001 From: Emagi Date: Mon, 2 Dec 2024 19:27:22 -0500 Subject: [PATCH] debug log for polling --- source/WorldServer/Web/HTTPSClientPool.cpp | 1 + 1 file changed, 1 insertion(+) 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); }