Skip to content

Commit

Permalink
Fix off by one error in log message (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
casey authored Feb 15, 2022
1 parent d253c9c commit 73e5756
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ impl Index {
count += 1;
}

log::info!("{}/{}: Processed {} blocks…", i + 1, blockfiles + 1, count);
log::info!("{}/{}: Processed {} blocks…", i + 1, blockfiles, count);

tx.commit()?;
}
Expand Down

0 comments on commit 73e5756

Please sign in to comment.