Skip to content

Commit

Permalink
Remove extra println
Browse files Browse the repository at this point in the history
  • Loading branch information
andll committed Jan 9, 2024
1 parent fc068df commit 3b78b12
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion mysticeti-core/src/wal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,6 @@ impl WalReader {
let offset = offset(position.start);
let bytes = self.map_offset(offset)?;
let buf_offset = (position.start - offset) as usize;
eprintln!("bytes.len={}, buf_offset={}", bytes.len(), buf_offset);
let Some((crc, len, tag)) = Self::read_header(&bytes[buf_offset..]) else {
return Ok(None);
};
Expand Down

0 comments on commit 3b78b12

Please sign in to comment.