From be6f3a2fd1210da53a9996212fdbaaf97af516b5 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Wed, 8 Apr 2026 18:37:58 +0200 Subject: [PATCH] fix spammy logs on guard release --- src/TConnectionLimiter.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/TConnectionLimiter.cpp b/src/TConnectionLimiter.cpp index 8696963..b2c681e 100644 --- a/src/TConnectionLimiter.cpp +++ b/src/TConnectionLimiter.cpp @@ -70,12 +70,9 @@ TConnectionLimiter::TGuard& TConnectionLimiter::TGuard::operator=(TGuard&& other } void TConnectionLimiter::TGuard::Release() { - beammp_debugf("Trying to release connection guard for {} ...", mIp); if (mOwner) { mOwner->Release(mIp); mOwner = nullptr; - beammp_debugf("... Released connection guard for {}", mIp); - } else { - beammp_debugf("... Connection guard for {} was already released (nothing happened)", mIp); + beammp_debugf("Released connection guard for {}", mIp); } }