We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7511596 + ed53a81 commit 0d1c4bbCopy full SHA for 0d1c4bb
concurrency/src/tasks/gen_server.rs
@@ -55,7 +55,6 @@ impl<G: GenServer> GenServerHandle<G> {
55
}
56
57
pub async fn cast(&mut self, message: G::CastMsg) -> Result<(), GenServerError> {
58
- tracing::info!("Sending");
59
self.tx
60
.send(GenServerInMsg::Cast { message })
61
.map_err(|_error| GenServerError::ServerError)
@@ -135,7 +134,6 @@ where
135
134
) -> impl std::future::Future<Output = Result<bool, GenServerError>> + Send {
136
async {
137
let message = rx.recv().await;
138
- tracing::info!("received");
139
140
// Save current state in case of a rollback
141
let state_clone = state.clone();
0 commit comments