Skip to content

Commit

Permalink
fix: convert remaining println statements to logging
Browse files Browse the repository at this point in the history
  • Loading branch information
conorsch committed Oct 17, 2024
1 parent eec9d25 commit 276a48e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/bin/pmonitor/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -485,9 +485,9 @@ impl Opt {
.view(wallet_dir, new_fvk.clone(), pmonitor_config.grpc_url())
.await?;

println!("Syncing new wallet...");
tracing::info!("syncing migrated wallet");
self.sync(&mut view_client).await?;
println!("Wallet synced successfully");
tracing::info!("finished syncing migrated wallet");
// Now we can exit the else if statement and continue by computing the balance,
// which will use the new migrated wallet.
} else {
Expand Down

0 comments on commit 276a48e

Please sign in to comment.