fix:add log for wal

This commit is contained in:
wangmm0220 2023-04-19 18:16:57 +08:00
parent 6f94281ab7
commit 4d9d1b520d
1 changed files with 1 additions and 1 deletions

View File

@ -262,7 +262,7 @@ static int32_t walFetchBodyNew(SWalReader *pReader) {
SWalCont *pReadHead = &pReader->pHead->head; SWalCont *pReadHead = &pReader->pHead->head;
int64_t ver = pReadHead->version; int64_t ver = pReadHead->version;
wInfo("vgId:%d, wal starts to fetch body, ver:%" PRId64 " ,len:%d, total cnt:%"PRId64 ", total size:%"PRId64, pReader->pWal->cfg.vgId, ver, wDebug("vgId:%d, wal starts to fetch body, ver:%" PRId64 " ,len:%d, total cnt:%"PRId64 ", total size:%"PRId64, pReader->pWal->cfg.vgId, ver,
pReadHead->bodyLen, pReader->bodyCnt, pReader->bodyTotalSize); pReadHead->bodyLen, pReader->bodyCnt, pReader->bodyTotalSize);
if (pReader->capacity < pReadHead->bodyLen) { if (pReader->capacity < pReadHead->bodyLen) {