[Sys] Reduce debugging noise.

This commit is contained in:
Drew Galbraith 2023-12-06 23:29:48 -08:00
parent 8c95e66277
commit ebe72af716
3 changed files with 11 additions and 3 deletions

View file

@ -96,9 +96,7 @@ glcr::ErrorOr<mmth::OwnedMemoryRegion> Ext2BlockReader::ReadBlocks(
}
req.add_lba(curr_start);
req.add_sector_cnt(curr_run_len * SectorsPerBlock());
dbgln("Read {x}, {x}", curr_start, curr_run_len * SectorsPerBlock());
}
dbgln("Read many: {x}", req.lba().size());
ReadResponse resp;
auto status = denali_.ReadMany(req, resp);
if (!status.ok()) {