From e9e7579df0f2ff14d5ecf96f9a04b5986274bcb6 Mon Sep 17 00:00:00 2001 From: Geoffrey Merck Date: Wed, 28 May 2025 19:26:17 +0200 Subject: [PATCH] remove debug messages #55 --- Common/RepeaterHandler.cpp | 7 ------- IRCDDB/IRCDDBMultiClient.cpp | 1 - 2 files changed, 8 deletions(-) diff --git a/Common/RepeaterHandler.cpp b/Common/RepeaterHandler.cpp index bdf293c..3fbb913 100644 --- a/Common/RepeaterHandler.cpp +++ b/Common/RepeaterHandler.cpp @@ -611,7 +611,6 @@ void CRepeaterHandler::processRepeater(CHeaderData& header) sendToIncoming(header); // Reset the slow data text collector - CLog::logDebug("Issue_55 reset Text Collector"); m_textCollector.reset(); m_text.clear(); @@ -832,17 +831,11 @@ void CRepeaterHandler::processRepeater(CAMBEData& data) if (m_text.empty() && !data.isEnd()) { m_textCollector.writeData(data); - CLog::logDebug("Issue_55, received text data"); - bool hasText = m_textCollector.hasData(); if (hasText) { m_text = m_textCollector.getData(); - CLog::logDebug("Issue_55, received text \"%s\"", m_text.c_str()); sendHeard(m_text); } - else { - CLog::logDebug("Issue_55, data had no text"); - } } data.setText(m_text); diff --git a/IRCDDB/IRCDDBMultiClient.cpp b/IRCDDB/IRCDDBMultiClient.cpp index 19402d8..bd8378e 100644 --- a/IRCDDB/IRCDDBMultiClient.cpp +++ b/IRCDDB/IRCDDBMultiClient.cpp @@ -125,7 +125,6 @@ bool CIRCDDBMultiClient::sendHeardWithTXMsg(const std::string & myCall, const st for (unsigned int i = 0; i < m_clients.size(); i++) { result = m_clients[i]->sendHeardWithTXMsg(myCall, myCallExt, yourCall, rpt1, rpt2, flag1, flag2, flag3, network_destination, tx_message) && result; - CLog::logDebug("Issue_55 sent %s/%s \"%s\" to ircddb client %i", myCall.c_str(), myCallExt.c_str(), tx_message.c_str(), i); } return result;