We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e362c64 commit 7c0b637Copy full SHA for 7c0b637
usr/xv6/kernel/fs/src/log/log.rs
@@ -65,7 +65,7 @@ impl LogInternal {
65
// Copy committed blocks from log to their home location
66
fn install_trans(&mut self) {
67
for tail in 0..self.logheader.n {
68
- console::println!("committing {} to {}", self.start + tail + 1, self.logheader.block_nums[tail as usize]);
+ // console::println!("committing {} to {}", self.start + tail + 1, self.logheader.block_nums[tail as usize]);
69
let mut lbuf = BCACHE.force_get().read(self.dev, self.start + tail + 1);
70
let mut dbuf = BCACHE.force_get().read(self.dev, self.logheader.block_nums[tail as usize]);
71
{
0 commit comments