remove some un necessary logs

This commit is contained in:
slguan 2019-11-19 14:53:25 +08:00
parent 5506dbe136
commit eb6be38711
2 changed files with 0 additions and 3 deletions

View File

@ -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;
}

View File

@ -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;
}