diff --git a/src/player.rs b/src/player.rs index 2523238..51a6a8e 100644 --- a/src/player.rs +++ b/src/player.rs @@ -143,8 +143,6 @@ impl Player for PlayerService { let sleep_duration = Duration::from_millis(1000); tokio::spawn(async move { - println!("get_status stream opened"); - while !tx.is_closed() { if let Err(_) = tx .send(Ok(state.lock().await.player.get_snapshot().into())) @@ -155,8 +153,6 @@ impl Player for PlayerService { tokio::time::sleep(sleep_duration).await; } - - println!("get_status stream closed"); }); let output_stream = ReceiverStream::new(rx);