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; }