From f099bbddd0efed15f72ce92b622d1cc3283cf428 Mon Sep 17 00:00:00 2001 From: Chris Miles Date: Sat, 17 May 2025 22:42:19 -0500 Subject: [PATCH] Update daybreak_connection.cpp --- common/net/daybreak_connection.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/net/daybreak_connection.cpp b/common/net/daybreak_connection.cpp index 379520057..93d964b13 100644 --- a/common/net/daybreak_connection.cpp +++ b/common/net/daybreak_connection.cpp @@ -1159,9 +1159,10 @@ void EQ::Net::DaybreakConnection::ProcessResend(int stream) if (m_resend_packets_sent >= MAX_CLIENT_RECV_PACKETS_PER_WINDOW || m_resend_bytes_sent >= MAX_CLIENT_RECV_BYTES_PER_WINDOW) { LogNetClient( - "Stopping resend because we hit thresholds m_resend_packets_sent [{}] max [{}] m_resend_bytes_sent [{}] max [{}]", + "Stopping resend because we hit thresholds m_resend_packets_sent [{}] max [{}] in_queue [{}] m_resend_bytes_sent [{}] max [{}]", m_resend_packets_sent, MAX_CLIENT_RECV_PACKETS_PER_WINDOW, + s->sent_packets, m_resend_bytes_sent, MAX_CLIENT_RECV_BYTES_PER_WINDOW );