fix: remove tracing

This commit is contained in:
əlemi 2023-11-30 03:08:22 +01:00
parent 3197c083bf
commit 9d349e1b1e

View file

@ -80,9 +80,7 @@ impl Controller<TextChange> for BufferController {
}
let (tx, rx) = oneshot::channel::<()>();
self.poller.send(tx)?;
tracing::info!("polling");
rx.await.map_err(|_| crate::Error::Channel { send: false })?;
tracing::info!("polling unblocked");
Ok(())
}