From b675cf0dd00fdd38e3a683eda8175c0b39c91ab9 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Sun, 21 Apr 2019 17:27:48 -0700 Subject: [PATCH] another log --- ircddb/IRCProtocol.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ircddb/IRCProtocol.cpp b/ircddb/IRCProtocol.cpp index 97ffb6d..81a9d70 100644 --- a/ircddb/IRCProtocol.cpp +++ b/ircddb/IRCProtocol.cpp @@ -188,6 +188,7 @@ bool IRCProtocol::processQueues(IRCMessageQueue *recvQ, IRCMessageQueue *sendQ) printf("currentNick='%s' 1='%s'\n", currentNick.c_str(), m->params[1].c_str()); if (0 == m->params[1].find("IDRT_PING")) { std::string from = m->params[1].substr(10); + printf("to replyQ: IDRT_PING %s\n", from.c_str()); IRCMessage *rm = new IRCMessage("IDRT_PING"); rm->addParam(from); app->putReplyMessage(rm);