diff --git a/source/libs/sync/src/syncMain.c b/source/libs/sync/src/syncMain.c index bb93248b5194391bdbd6471c6c6eabc793265303..56dcc054f4674e844b73b7214e049e8bc0e76aab 100644 --- a/source/libs/sync/src/syncMain.c +++ b/source/libs/sync/src/syncMain.c @@ -452,7 +452,7 @@ int32_t syncEndSnapshot(int64_t rid) { SSyncLogStoreData* pData = pSyncNode->pLogStore->data; code = walEndSnapshot(pData->pWal); if (code != 0) { - sError("vgId:%d, wal end snapshot error since:%s", terrstr(terrno)); + sError("vgId:%d, wal snapshot end error since:%s", terrstr(terrno)); taosReleaseRef(tsNodeRefId, pSyncNode->rid); return -1; diff --git a/source/libs/sync/src/syncTimeout.c b/source/libs/sync/src/syncTimeout.c index 18c381a4e604c2e180bbbe771e970f731bac1e5f..ac4ea2344be3251812028acfd57011ded0b2d134 100644 --- a/source/libs/sync/src/syncTimeout.c +++ b/source/libs/sync/src/syncTimeout.c @@ -76,7 +76,7 @@ int32_t syncNodeTimerRoutine(SSyncNode* ths) { SSyncLogStoreData* pData = ths->pLogStore->data; int32_t code = walEndSnapshot(pData->pWal); if (code != 0) { - sError("vgId:%d, wal end snapshot error since:%s", terrstr(terrno)); + sError("vgId:%d, wal snapshot end error since:%s", terrstr(terrno)); return -1; } else { do {