From 82cc448aa238371b48b47a092194bf9f81bab2b1 Mon Sep 17 00:00:00 2001 From: Abutalib Aghayev Date: Tue, 8 Nov 2022 20:58:38 -0500 Subject: [PATCH] remove debugging println --- tokio/src/runtime/task/harness.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/tokio/src/runtime/task/harness.rs b/tokio/src/runtime/task/harness.rs index d5b312059fc..5c386eb616f 100644 --- a/tokio/src/runtime/task/harness.rs +++ b/tokio/src/runtime/task/harness.rs @@ -458,7 +458,6 @@ enum PollFuture { /// Cancels the task and store the appropriate error in the stage field. fn cancel_task(stage: &CoreStage, id: super::Id) { - println!("cancel_task called"); // Drop the future from a panic guard. let res = panic::catch_unwind(panic::AssertUnwindSafe(|| { let _task_id_guard = TaskIdGuard::new(id);