summaryrefslogtreecommitdiffstats
path: root/tokio/src/sync/mpsc/chan.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/sync/mpsc/chan.rs')
-rw-r--r--tokio/src/sync/mpsc/chan.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/tokio/src/sync/mpsc/chan.rs b/tokio/src/sync/mpsc/chan.rs
index 03f35339..4030e380 100644
--- a/tokio/src/sync/mpsc/chan.rs
+++ b/tokio/src/sync/mpsc/chan.rs
@@ -299,12 +299,6 @@ where
// second time here.
try_recv!();
- debug!(
- "recv; rx_closed = {:?}; is_idle = {:?}",
- rx_fields.rx_closed,
- self.inner.semaphore.is_idle()
- );
-
if rx_fields.rx_closed && self.inner.semaphore.is_idle() {
Ready(None)
} else {