Skip to content

Commit

Permalink
chore: refine indexer/build process msg (#2437)
Browse files Browse the repository at this point in the history
  • Loading branch information
popcnt1 authored Aug 14, 2024
1 parent 861d650 commit 62cb215
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/rooch/src/commands/indexer/commands/rebuild.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,12 @@ fn apply_updates(
let loop_start_time = Instant::now();
let count = batch.object_states.len();
indexer_store.persist_or_update_object_states(batch.object_states)?;
ok_count += count;
println!(
"{} updates applied in: {:?}",
count,
"{} updates applied. this batch cost: {:?}",
ok_count,
loop_start_time.elapsed()
);
ok_count += count;
}

println!(
Expand Down

0 comments on commit 62cb215

Please sign in to comment.