remove noisy debug log message

This commit is contained in:
Dmitry Rodionov
2022-04-13 18:56:27 +03:00
committed by Dmitry Rodionov
parent 1fd08107ca
commit 49da76237b

View File

@@ -198,7 +198,6 @@ impl BlockWriter for BlockBuf {
assert!(buf.len() == PAGE_SZ);
let blknum = self.blocks.len();
self.blocks.push(buf);
tracing::info!("buffered block {}", blknum);
Ok(blknum as u32)
}
}