From 276a48e674a270879d11742e41f390a48b752e52 Mon Sep 17 00:00:00 2001 From: Conor Schaefer Date: Thu, 17 Oct 2024 13:43:03 -0700 Subject: [PATCH] fix: convert remaining println statements to logging --- crates/bin/pmonitor/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bin/pmonitor/src/main.rs b/crates/bin/pmonitor/src/main.rs index 6549254b10..372f425adb 100644 --- a/crates/bin/pmonitor/src/main.rs +++ b/crates/bin/pmonitor/src/main.rs @@ -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 {