From 2bf5d29c766834fd129b78cfaf14e88e3d92dbda Mon Sep 17 00:00:00 2001 From: Emagi Date: Mon, 2 Dec 2024 19:28:21 -0500 Subject: [PATCH] Update HTTPSClientPool.cpp --- source/WorldServer/Web/HTTPSClientPool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/WorldServer/Web/HTTPSClientPool.cpp b/source/WorldServer/Web/HTTPSClientPool.cpp index 987bd2f..9a8090e 100644 --- a/source/WorldServer/Web/HTTPSClientPool.cpp +++ b/source/WorldServer/Web/HTTPSClientPool.cpp @@ -718,7 +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); + LogWrite(PEERING__DEBUG, 5, "Peering", "%s: startPolling for %s:%s.", __FUNCTION__, server.c_str(), port.c_str()); std::async(std::launch::async, &HTTPSClientPool::pollPeerHealth, this, server, port); }