Skip to content

Commit

Permalink
print time when restarting
Browse files Browse the repository at this point in the history
  • Loading branch information
lucianHymer committed Mar 26, 2024
1 parent ecf39fd commit d92e1ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions indexer/src/staking_indexer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ impl<'a> StakingIndexer<'a> {
loop {
let start_block = self.postgres_client.get_latest_block(self.chain_id, self.start_block).await?;
println!(
"Debug - Starting indexer for chain {} at block {}",
self.chain_id, start_block
"Debug - Starting indexer for chain {} at block {} at {}",
self.chain_id, start_block, chrono::Utc::now()
);

match try_join!(
Expand Down

0 comments on commit d92e1ac

Please sign in to comment.