tdb/pager: remove debug log

This commit is contained in:
Minglei Jin 2023-06-12 16:43:49 +08:00
parent 9e7f860d7c
commit 621d4b20c0
1 changed files with 0 additions and 4 deletions

View File

@ -316,10 +316,6 @@ int tdbPagerCommit(SPager *pPager, TXN *pTxn) {
return -1;
}
if (!TDB_PAGE_TOTAL_CELLS(pPage) && TDB_PAGE_PGNO(pPage) > 1) {
tdbDebug("pager/commit: %p, %d/%d, txnId:%" PRId64, pPager, pPager->dbOrigSize, pPager->dbFileSize, pTxn->txnId);
}
ret = tdbPagerPWritePageToDB(pPager, pPage);
if (ret < 0) {
tdbError("failed to write page to db since %s", tstrerror(terrno));