From 19c3c7c6f3de40d02ef34593c6909a065a3f6969 Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Sat, 2 Jan 2021 11:05:57 +0000 Subject: [PATCH] add debug log --- src/client/src/tscSystem.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/client/src/tscSystem.c b/src/client/src/tscSystem.c index f37daee3ca..e4a1cbc7d5 100644 --- a/src/client/src/tscSystem.c +++ b/src/client/src/tscSystem.c @@ -52,6 +52,7 @@ void tscCheckDiskUsage(void *UNUSED_PARAM(para), void* UNUSED_PARAM(param)) { void tscFreeRpcObj(void *param) { assert(param); SRpcObj *pRpcObj = (SRpcObj *)(param); + tscDebug("free rpcObj:%p and free pDnodeConn: %p", pRpcObj, pRpcObj->pDnodeConn); rpcClose(pRpcObj->pDnodeConn); tfree(pRpcObj->tscCorMgmtEpSet); } -- GitLab