Skip to content

Commit

Permalink
working on plan
Browse files Browse the repository at this point in the history
  • Loading branch information
scx1332 committed Jul 17, 2024
1 parent 3f44c2e commit a0637ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub fn explain_plan(operations: &[Operation]) {
let mut step_no = 0;
for op in operations {
let middle_msg = if op.is_middle { "(middle) " } else { "" };
log::info!("{} - {}Output chunk {}-{}", middle_msg, step_no, op.data_chunk.0, op.data_chunk.1);
log::info!("{} - {}Output chunk {}-{}", step_no, middle_msg, op.data_chunk.0, op.data_chunk.1);
step_no += 1;
if let Some((src_start, src_end)) = op.src_chunk {
log::info!("{} - Copy {} bytes from {}-{} to {}-{}", step_no, src_end - src_start, src_start, src_end, op.data_chunk.0, op.data_chunk.1);
Expand Down

0 comments on commit a0637ae

Please sign in to comment.