From 6abf386369e5b9ff6c20386edc8c640d20a57e03 Mon Sep 17 00:00:00 2001 From: Jae-Won Chung Date: Wed, 15 May 2024 23:00:59 -0400 Subject: [PATCH] Remove 'waiting...' message --- src/main.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 6c259f1..14b10fc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -120,7 +120,6 @@ async fn run_broadcast(cli: &Config) -> Result<(), PegasusError> { // Break out of the scheduling loop. break; } - eprintln!("[Pegasus] Queue drained. Waiting 3 seconds..."); time::sleep(time::Duration::from_secs(3)).await; } @@ -236,7 +235,6 @@ async fn run_queue(cli: &Config) -> Result<(), PegasusError> { } // Queue is empty but either we're in deamon mode or not all commands // finished running. So we wait. - eprintln!("[Pegasus] Queue drained. Waiting 3 seconds..."); time::sleep(time::Duration::from_secs(3)).await; }