Change to println!

This commit is contained in:
김선우
2024-12-22 14:41:12 +09:00
parent 57c7a56e35
commit 9bacf80f2e

View File

@@ -1754,7 +1754,7 @@ impl Cursor for BTreeCursor {
}
fn delete(&mut self) -> Result<CursorResult<()>> {
debug!("rowid: {:?}", self.rowid.borrow());
println!("rowid: {:?}", self.rowid.borrow());
Ok(CursorResult::Ok(()))
}