Skip to content

Commit

Permalink
chore: log if we're still sync'ing
Browse files Browse the repository at this point in the history
  • Loading branch information
jcnelson committed Jan 7, 2025
1 parent 08d3028 commit b5b6038
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion testnet/stacks-node/src/run_loop/nakamoto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,6 @@ impl RunLoop {
self.config(),
burnchain.sortdb_mut(),
sortition_id,
ibd,
) {
// relayer errored, exit.
error!("Runloop: Block relayer and miner errored, exiting."; "err" => ?e);
Expand Down Expand Up @@ -725,6 +724,11 @@ impl RunLoop {
globals.raise_initiative("runloop-synced".to_string());
}
}
} else {
info!("Runloop: still synchronizing";
"sortition_db_height" => sortition_db_height,
"burnchain_height" => burnchain_height,
"ibd" => ibd);
}
}
}
Expand Down

0 comments on commit b5b6038

Please sign in to comment.