From ca2e351b6505b343aa12495cbfda4aa37163b48c Mon Sep 17 00:00:00 2001 From: Geoffrey Merck Date: Sun, 25 May 2025 06:46:33 +0200 Subject: [PATCH] Add more debug information #55 --- IRCDDB/IRCDDBMultiClient.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/IRCDDB/IRCDDBMultiClient.cpp b/IRCDDB/IRCDDBMultiClient.cpp index bd8378e..19402d8 100644 --- a/IRCDDB/IRCDDBMultiClient.cpp +++ b/IRCDDB/IRCDDBMultiClient.cpp @@ -125,6 +125,7 @@ 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;