From db37c654c51a30b2acc49cb1e445c84bae90c853 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sun, 9 Nov 2025 23:43:31 -0500 Subject: [PATCH] feat: add logging for periodic ping in OverteClient poll method --- src/OverteClient.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/OverteClient.cpp b/src/OverteClient.cpp index b1fe1c0..c62d43a 100644 --- a/src/OverteClient.cpp +++ b/src/OverteClient.cpp @@ -396,6 +396,7 @@ void OverteClient::poll() { auto now = std::chrono::steady_clock::now(); if (std::chrono::duration_cast(now - lastPing).count() >= 1) { + std::cout << "[OverteClient] Sending periodic ping to domain (localID=" << m_localID << ")" << std::endl; sendPing(m_udpFd, m_udpAddr, m_udpAddrLen); lastPing = now; }