From 3f46145c01d8456073638468ccc841b8f5130f24 Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Mon, 5 Aug 2024 15:40:59 +0800 Subject: [PATCH] add debug log --- source/libs/transport/src/transCli.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/libs/transport/src/transCli.c b/source/libs/transport/src/transCli.c index 5561d6fa2d..9a0631d3a8 100644 --- a/source/libs/transport/src/transCli.c +++ b/source/libs/transport/src/transCli.c @@ -1598,7 +1598,7 @@ static void cliHandleFreeById(SCliMsg* pMsg, SCliThrd* pThrd) { int64_t refId = (int64_t)(pMsg->msg.info.handle); SExHandle* exh = transAcquireExHandle(transGetRefMgt(), refId); if (exh == NULL) { - tDebug("%" PRId64 " already released", refId); + tDebug("id %" PRId64 " already released", refId); destroyCmsg(pMsg); return; } @@ -3280,7 +3280,7 @@ int32_t transFreeConnById(void* shandle, int64_t transpointId) { } pCli->type = FreeById; - tDebug("release conn By refId %" PRId64 "", transpointId); + tDebug("release conn id %" PRId64 "", transpointId); STransMsg msg = {.info.handle = (void*)transpointId}; pCli->msg = msg;