fix(stream): fix syntax error.

This commit is contained in:
Haojun Liao 2023-10-16 10:16:39 +08:00
parent 67bee17e5e
commit 18bb27cdff
1 changed files with 2 additions and 2 deletions

View File

@ -855,7 +855,7 @@ static void tLDataIterPinSttBlock(SLDataIter* pIter, const char* id) {
return; return;
} }
tsdbError("failed to pin any stt block, sttBlock:%d", pIter->iSttBlk, id); tsdbError("failed to pin any stt block, sttBlock:%d, %s", pIter->iSttBlk, id);
} }
static void tLDataIterUnpinSttBlock(SLDataIter* pIter, const char* id) { static void tLDataIterUnpinSttBlock(SLDataIter* pIter, const char* id) {
@ -872,7 +872,7 @@ static void tLDataIterUnpinSttBlock(SLDataIter* pIter, const char* id) {
return; return;
} }
tsdbError("failed to unpin any stt block, sttBlock:%d", pIter->iSttBlk, id); tsdbError("failed to unpin any stt block, sttBlock:%d, %s", pIter->iSttBlk, id);
} }
void tMergeTreePinSttBlock(SMergeTree *pMTree) { void tMergeTreePinSttBlock(SMergeTree *pMTree) {