From eb6be38711b3788637d6a01c29aaf4f0343ebad8 Mon Sep 17 00:00:00 2001 From: slguan Date: Tue, 19 Nov 2019 14:53:25 +0800 Subject: [PATCH] remove some un necessary logs --- src/system/detail/src/mgmtDnodeInt.c | 1 - src/system/detail/src/mgmtMeter.c | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/system/detail/src/mgmtDnodeInt.c b/src/system/detail/src/mgmtDnodeInt.c index 79f036d0d7..9310182a14 100644 --- a/src/system/detail/src/mgmtDnodeInt.c +++ b/src/system/detail/src/mgmtDnodeInt.c @@ -128,7 +128,6 @@ int mgmtProcessVPeersRsp(char *msg, int msgLen, SDnodeObj *pObj) { } if (pDb->vgStatus != TSDB_VG_STATUS_IN_PROGRESS) { - mTrace("===> pDb:%s %p status:%d", pDb->name, pDb, pDb->vgStatus); mTrace("dnode:%s, db:%s vpeer rsp already disposed, vgroup status:%d code:%d", taosIpStr(pObj->privateIp), pRsp->more, pDb->vgStatus, pRsp->code); return 0; } diff --git a/src/system/detail/src/mgmtMeter.c b/src/system/detail/src/mgmtMeter.c index ba9c0a4cb9..80ea5142e9 100644 --- a/src/system/detail/src/mgmtMeter.c +++ b/src/system/detail/src/mgmtMeter.c @@ -618,7 +618,6 @@ int mgmtCreateMeter(SDbObj *pDb, SCreateTableMsg *pCreate) { if (pDb->vgStatus == TSDB_VG_STATUS_IN_PROGRESS) { mgmtDestroyMeter(pMeter); mTrace("table:%s, vgroup in creating progress", pCreate->meterId); - mTrace("===> pDb:%s %p status:%d", pDb->name, pDb, pDb->vgStatus); return TSDB_CODE_ACTION_IN_PROGRESS; } @@ -645,7 +644,6 @@ int mgmtCreateMeter(SDbObj *pDb, SCreateTableMsg *pCreate) { mgmtCreateVgroup(pDb); mgmtDestroyMeter(pMeter); mTrace("table:%s, vgroup malloced, wait for create progress finished", pCreate->meterId); - mTrace("===> pDb:%s %p status:%d", pDb->name, pDb, pDb->vgStatus); return TSDB_CODE_ACTION_IN_PROGRESS; }