From c3f1d1a95e6259c5da175f6c4557fd0609229670 Mon Sep 17 00:00:00 2001 From: Chris Miles Date: Sat, 17 May 2025 22:29:11 -0500 Subject: [PATCH] Update daybreak_connection.cpp --- common/net/daybreak_connection.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/common/net/daybreak_connection.cpp b/common/net/daybreak_connection.cpp index b33736af1..103e24e30 100644 --- a/common/net/daybreak_connection.cpp +++ b/common/net/daybreak_connection.cpp @@ -1127,6 +1127,13 @@ void EQ::Net::DaybreakConnection::ProcessResend(int stream) auto time_since_first_sent = std::chrono::duration_cast(now - first_packet.first_sent).count(); if (time_since_first_sent >= m_owner->m_options.resend_timeout) { + LogNetClient( + "Closing connection time_since_first_sent [{}] >= m_owner->m_options.resend_timeout [{}] now [{}] first_packet.first_sent [{}]", + time_since_first_sent, + m_owner->m_options.resend_timeout, + now, + first_packet.first_sent + ); Close(); return; }