Skip to content

Commit

Permalink
chore: remove debug printlns
Browse files Browse the repository at this point in the history
  • Loading branch information
snormore committed Jun 5, 2024
1 parent e9eb263 commit 0bcbf80
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions core/cli/tests/checkpoint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ async fn node_checkpointing() -> Result<()> {
.map_err(|e| anyhow::anyhow!("Node Initialization failed: {e:?}"))
.context("Could not start the node.")?;

println!("HERE");
node.start().await;

let shutdown_future = shutdown_controller.wait_for_shutdown();
Expand All @@ -228,7 +227,6 @@ async fn node_checkpointing() -> Result<()> {
tokio::select! {
_ = &mut shutdown_future => break,
_ = interval.tick() => {
println!("HERE 2");

// wait for node to start
tokio::time::sleep(Duration::from_secs(30)).await;
Expand Down

0 comments on commit 0bcbf80

Please sign in to comment.