Skip to content

Commit

Permalink
remove println in async consumer.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
Congyuwang committed Jul 31, 2023
1 parent c23c4f0 commit 3a3f6e8
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions async/src/traits/consumer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,6 @@ impl<'a, A: AsyncConsumer> Future for PopFuture<'a, A> {
loop {
assert!(!self.done);
let closed = self.owner.is_closed();
#[cfg(feature = "std")]
std::println!("PopFuture::poll: closed={}", closed);
if let Some(item) = self.owner.try_pop() {
self.done = true;
break Poll::Ready(Some(item));
Expand Down

0 comments on commit 3a3f6e8

Please sign in to comment.