Skip to content

Commit 0d1c4bb

Browse files
authored
Merge pull request #10 from lambdaclass/fix_handle
Removing slipped debug lines
2 parents 7511596 + ed53a81 commit 0d1c4bb

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

concurrency/src/tasks/gen_server.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ impl<G: GenServer> GenServerHandle<G> {
5555
}
5656

5757
pub async fn cast(&mut self, message: G::CastMsg) -> Result<(), GenServerError> {
58-
tracing::info!("Sending");
5958
self.tx
6059
.send(GenServerInMsg::Cast { message })
6160
.map_err(|_error| GenServerError::ServerError)
@@ -135,7 +134,6 @@ where
135134
) -> impl std::future::Future<Output = Result<bool, GenServerError>> + Send {
136135
async {
137136
let message = rx.recv().await;
138-
tracing::info!("received");
139137

140138
// Save current state in case of a rollback
141139
let state_clone = state.clone();

0 commit comments

Comments
 (0)